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

body {
    font-family: system-ui, -apple-system, 'Helvetica', sans-serif;
    color: #333;
    background-color: #f9fdf9;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: sans-serif;
    color: #006400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #006400;
    transition: all 0.3s ease;
}

a:hover {
    color: #004d00;
}

.section-spacing {
    padding: 90px 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 5px rgba(0, 100, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #006400 !important;
}

.navbar-nav .nav-link {
    color: #006400 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #004d00 !important;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 56px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 253, 249, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.content-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-with-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.15);
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.btn-natural {
    background-color: #006400;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-natural:hover {
    background-color: #004d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

.card-natural {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 100, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card-natural:hover {
    box-shadow: 0 5px 20px rgba(0, 100, 0, 0.2);
    transform: translateY(-5px);
}

.table-natural {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 100, 0, 0.1);
}

.table-natural thead {
    background-color: #006400;
    color: white;
}

.table-natural th,
.table-natural td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.table-natural tbody tr:hover {
    background-color: #f0f8f0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 100, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.15);
}

.faq-question {
    font-weight: 600;
    color: #006400;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    color: #555;
}

.info-box {
    background: #e8f5e8;
    border-left: 5px solid #006400;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #006400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

footer {
    background-color: #006400;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 100px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #c0e0c0;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    margin: 0 1rem;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

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

.modal-policy.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-policy {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #006400;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #004d00;
}

.success-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    text-align: center;
    max-width: 500px;
}

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

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

.overlay.show {
    display: block;
}

.disclaimer-section {
    background: #fff9e6;
    border: 2px solid #006400;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
}

.educational-notice {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .content-with-image {
        flex-direction: column;
    }

    .content-with-image.reverse {
        flex-direction: column;
    }

    .content-with-image img {
        max-width: 100%;
    }

    .section-spacing,
    .content-section {
        padding: 60px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}
