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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9f4 100%);
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(58, 112, 79, 0.1);
    z-index: 1000;
}

header .navbar {
    padding: 1rem 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3A704F;
    letter-spacing: 0.5px;
}

.navbar-brand:hover .brand-name {
    color: #2d5a3e;
}

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

.nav-link:hover {
    color: #3A704F !important;
}

main {
    margin-top: 76px;
}

section {
    padding: 4rem 0;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3A704F;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-section .lead {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3A704F;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.content-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d5a3e;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.bg-light {
    background: #f8fdf9 !important;
}

.rounded-custom {
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(58, 112, 79, 0.1);
}

.btn-primary {
    background-color: #3A704F;
    border-color: #3A704F;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(58, 112, 79, 0.2);
}

.btn-primary:hover {
    background-color: #2d5a3e;
    border-color: #2d5a3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 112, 79, 0.3);
}

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

.disclaimer-box {
    background: #f0f9f4;
    border-left: 4px solid #3A704F;
    padding: 1.25rem;
    margin-top: 2rem;
    border-radius: 8px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.natural-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.natural-list li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.natural-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3A704F;
    font-weight: bold;
    font-size: 1.2rem;
}

.habit-card {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(58, 112, 79, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.habit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(58, 112, 79, 0.15);
}

.habit-card h3 {
    font-size: 1.4rem;
    color: #3A704F;
    margin-bottom: 1rem;
}

.habit-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.curiosity-item {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(58, 112, 79, 0.08);
}

.curiosity-item h3 {
    font-size: 1.4rem;
    color: #3A704F;
    margin-bottom: 1rem;
    margin-top: 0;
}

.curiosity-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.faq-item {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(58, 112, 79, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #3A704F;
    margin-bottom: 1rem;
    margin-top: 0;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

.contact-info {
    background: #f0f9f4;
    padding: 2rem;
    border-radius: 18px;
}

.contact-info h3 {
    color: #3A704F;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

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

.contact-form label {
    font-weight: 600;
    color: #3A704F;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #3A704F;
    box-shadow: 0 0 0 0.2rem rgba(58, 112, 79, 0.15);
}

footer {
    background: #2d5a3e;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

footer p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

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

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

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.cookie-banner p {
    margin: 0;
    color: #ffffff;
}

.cookie-banner .btn-primary {
    background-color: #ffffff;
    color: #3A704F;
    border: none;
}

.cookie-banner .btn-primary:hover {
    background-color: #f0f0f0;
    color: #2d5a3e;
}

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

.policy-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 18px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.policy-modal-close {
    color: #888;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.policy-modal-close:hover {
    color: #3A704F;
}

#policyContent h2 {
    color: #3A704F;
    margin-bottom: 1.5rem;
}

#policyContent h3 {
    color: #2d5a3e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#policyContent p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

#policyContent ul {
    margin-bottom: 1.5rem;
}

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

.thank-you-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 18px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.thank-you-modal-content h2 {
    color: #3A704F;
    margin-bottom: 1rem;
}

.thank-you-modal-content p {
    color: #555;
    font-size: 1.1rem;
}

.thank-you-modal-close {
    color: #888;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.thank-you-modal-close:hover {
    color: #3A704F;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section h3 {
        font-size: 1.4rem;
    }

    section {
        padding: 3rem 0;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .cookie-banner .col-lg-3 {
        text-align: center !important;
        margin-top: 1rem;
    }

    .policy-modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}
