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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar {
    padding: 1rem 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b9e78;
}

.navbar-brand:hover .brand-name {
    color: #5a8667;
}

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

.nav-link:hover {
    color: #6b9e78;
}

.nav-item.active .nav-link {
    color: #6b9e78;
    font-weight: 500;
}

main {
    margin-top: 70px;
}

.page-content {
    margin-top: 70px;
}

.hero-section {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.disclaimer-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

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

.content-section p {
    margin-bottom: 1.2rem;
    color: #555;
}

.content-section img {
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.limitation-context {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 2rem 0;
    border-left: 4px solid #6b9e78;
}

.limitation-context h2 {
    color: #6b9e78;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-soft {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 3rem 0;
}

.cta-soft h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.btn-custom {
    background-color: #6b9e78;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #5a8667;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107,158,120,0.3);
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background-color: #fff;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: #6b9e78;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #6b9e78;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.form-control:focus {
    outline: none;
    border-color: #6b9e78;
    box-shadow: 0 0 0 3px rgba(107,158,120,0.1);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.principle-item h3 {
    color: #6b9e78;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.contact-note h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 2rem auto;
    max-width: 900px;
}

.policy-content h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #6b9e78;
}

.policy-content h2 {
    color: #6b9e78;
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-content code {
    background-color: #f4f4f4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #e83e8c;
}

.disclaimer-highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.disclaimer-highlight h2 {
    color: #856404;
    margin-top: 0;
}

.disclaimer-highlight p {
    color: #856404;
    margin-bottom: 0;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h4 {
    color: #6b9e78;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin-bottom: 0.8rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #6b9e78;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

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

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

.cookie-content a:hover {
    color: #7fb88e;
}

#acceptCookies {
    margin-left: 1.5rem;
    white-space: nowrap;
}

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

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .hero-image-container {
        height: 350px;
    }

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

    .content-section h1 {
        font-size: 2rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #acceptCookies {
        margin-left: 0;
        width: 100%;
    }

    .policy-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-image-container {
        height: 280px;
    }

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