* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #333;
    background-color: #F8FAFC;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
}

p {
    margin-bottom: 1.2rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar {
    padding: 1rem 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2E7D32;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2E7D32;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 22px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.hero-note {
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #fff;
}

.section-title {
    margin-bottom: 2rem;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-category {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.product-category h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #2E7D32;
    font-size: 20px;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #2E7D32;
}

.disclaimer-box p {
    margin-bottom: 1.5rem;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1B5E20;
    border-color: #1B5E20;
}

.btn-outline-primary {
    color: #2E7D32;
    border-color: #2E7D32;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
}

.contact-info h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.25);
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.site-footer h4 {
    color: #2E7D32;
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.site-footer p {
    color: #ccc;
    font-size: 16px;
}

.footer-disclaimer {
    background: rgba(46,125,50,0.2);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    border-left: 3px solid #2E7D32;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2E7D32;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0 1rem 0 0;
    font-size: 14px;
}

.cookie-content strong {
    color: #2E7D32;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.policy-modal.show {
    display: block;
}

.policy-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.policy-modal-close {
    color: #aaa;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-modal-close:hover {
    color: #2E7D32;
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-image {
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .policy-modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
    }
}
