:root {
    --primary-color: #388E3C;
    --primary-dark: #2E7D32;
    --primary-light: #66BB6A;
    --text-dark: #212121;
    --text-light: #757575;
    --background-light: #FAFAFA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.brand-name {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 800px;
    margin: 2rem auto;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 1rem 0;
}

.content-section {
    background-color: var(--white);
}

.content-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.faq-section {
    background-color: var(--background-light);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.disclaimer-section {
    background-color: var(--background-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.contact-section {
    background-color: var(--white);
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--background-light);
    border-color: var(--background-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

footer {
    background-color: #212121;
}

footer h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

.shadow-sm {
    box-shadow: 0 2px 8px var(--shadow);
}

.rounded {
    border-radius: 8px;
}

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

.page-hero {
    padding: 4rem 0;
}

.page-hero h1 {
    color: var(--primary-color);
}

.alert {
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-info {
    background-color: #E3F2FD;
    border: 1px solid #90CAF9;
    color: #1565C0;
}

.alert-warning {
    background-color: #FFF3E0;
    border: 1px solid #FFB74D;
    color: #E65100;
}

.alert h3 {
    color: inherit;
    font-size: 1.25rem;
    margin-top: 0;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

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

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.95);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px var(--shadow);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    margin-right: 1rem;
    flex: 1;
    font-size: 0.9rem;
}

.cookie-content .btn {
    flex-shrink: 0;
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-overlay {
        padding: 2rem 1rem;
    }

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

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

    .content-section img {
        max-height: 300px;
        margin-bottom: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content p {
        margin-bottom: 1rem;
        text-align: center;
    }

    .cookie-content .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .page-hero {
        padding: 2rem 0;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}
