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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #2c3e50;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #3A6B52;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #3A6B52;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.92;
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3A6B52;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 0;
}

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

.bg-light {
    background: #f8f9fa;
}

.section-intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.myth-item {
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3A6B52;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: #fff;
    border: 2px solid #3A6B52;
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 2rem auto;
}

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

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3A6B52;
    box-shadow: 0 0 0 0.2rem rgba(58, 107, 82, 0.15);
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #3A6B52;
    color: #fff;
}

.btn-primary:hover {
    background: #2d5440;
    opacity: 1;
}

.btn-outline-primary {
    border: 2px solid #3A6B52;
    color: #3A6B52;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #3A6B52;
    color: #fff;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

footer h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

footer p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: #aaa;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3A6B52;
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.policy-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 3rem;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
}

.policy-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
}

.policy-close:hover {
    color: #333;
}

.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

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

.success-modal-content {
    background: #fff;
    margin: 15% auto;
    padding: 3rem;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.success-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
}

.success-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .section-image {
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-modal-content {
        margin: 10% 15px;
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
}
