/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D5016;
    color: white;
    padding: 15px;
    z-index: 1000;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #A8D5A8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background-color: #4A7C29;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-buttons button:hover {
    background-color: #6B8F3F;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2D5016;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4A7C29;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2D5016;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2D5016;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #4A7C29;
    color: white;
}

.btn-primary:hover {
    background-color: #2D5016;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #4A7C29;
    border: 2px solid #4A7C29;
}

.btn-secondary:hover {
    background-color: #4A7C29;
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2D5016;
    margin-bottom: 15px;
}

/* Company Info */
.company-info {
    background-color: #f8fdf8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card h3 {
    color: #2D5016;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    margin-bottom: 20px;
}

.product-icon svg {
    width: 80px;
    height: 80px;
}

.product-card h3 {
    color: #2D5016;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card ul {
    list-style: none;
    margin-top: 20px;
}

.product-card li {
    color: #666;
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
}

.product-card li:before {
    content: "✓";
    color: #4A7C29;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services */
.services {
    background-color: #f8fdf8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #2D5016;
    margin-bottom: 15px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #f8fdf8;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #4A7C29;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card cite {
    font-weight: bold;
    color: #2D5016;
    display: block;
    margin-top: 15px;
}

/* Calculator */
.calculator {
    background-color: #f8fdf8;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2D5016;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
}

.form-group select:focus {
    outline: none;
    border-color: #4A7C29;
}

.delivery-result {
    margin-top: 25px;
    padding: 20px;
    background-color: #e8f5e8;
    border-radius: 5px;
    border-left: 4px solid #4A7C29;
    display: none;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    color: #2D5016;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #2D5016;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #A8D5A8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #A8D5A8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: #A8D5A8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A7C29;
}

/* Page Specific Styles */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    background-color: #f8fdf8;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #2D5016;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-form-container {
    background-color: #f8fdf8;
    padding: 40px;
    border-radius: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A7C29;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Newsletter Page */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

.benefit-item h3 {
    color: #2D5016;
    margin-bottom: 10px;
}

.newsletter-form-container {
    background-color: #f8fdf8;
    padding: 40px;
    border-radius: 10px;
}

.newsletter-note {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon svg {
    width: 100px;
    height: 100px;
}

.thank-you-content h1 {
    color: #2D5016;
    font-size: 3rem;
    margin-bottom: 15px;
}

.thank-you-content .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4A7C29;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-content h3 {
    color: #2D5016;
    margin-bottom: 8px;
}

.thank-you-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    background-color: #f8fdf8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-reminder h3 {
    color: #2D5016;
    margin-bottom: 15px;
}

.contact-reminder .hours {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* Blog Page */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #4A7C29;
    font-weight: 600;
}

.blog-content h2 a {
    color: #2D5016;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: #4A7C29;
}

.read-more {
    color: #4A7C29;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2D5016;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    color: #2D5016;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #2D5016;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #f8fdf8;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #4A7C29;
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.legal-content address {
    background-color: #f8fdf8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4A7C29;
    font-style: normal;
    margin: 20px 0;
}

/* Article Pages */
.article-section {
    padding: 80px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-date {
    color: #666;
}

.article-category {
    color: #4A7C29;
    font-weight: 600;
}

.article-header h1 {
    color: #2D5016;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image svg {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    color: #2D5016;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #f8fdf8;
    padding-bottom: 10px;
}

.article-content h3 {
    color: #4A7C29;
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin: 10px 0;
}

.article-content p {
    margin: 20px 0;
}

.article-navigation {
    margin: 60px auto 0;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Cookie Settings */
.cookie-settings {
    background-color: #f8fdf8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.cookie-toggle {
    margin: 15px 0;
}

.cookie-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-toggle label:hover {
    background-color: rgba(74, 124, 41, 0.1);
}

.cookie-toggle input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.active {
    color: #4A7C29 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        padding: 50px 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 998;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .contact-wrapper,
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .newsletter-form-container {
        padding: 25px;
    }
    
    .legal-content {
        padding: 0 10px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
}