:root {
    --primary-color: #8b9a8f;
    --accent-color: #7ba89e;
    --cream-bg: #f5f1ed;
    --light-bg: #faf8f5;
    --text-dark: #2d2d2d;
    --text-light: #5a5a5a;
    --border-color: #e8e4e0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

body {
    line-height: 1.6;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.navbar {
    box-shadow: none;
    background-color: white !important;
}

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

.nav-link {
    color: var(--text-light) !important;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
}

main {
    min-height: calc(100vh - 300px);
}

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

.content-section.bg-light {
    background-color: var(--cream-bg);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.content-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.img-fluid {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 154, 143, 0.15);
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-check-input {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-light);
}

footer {
    background-color: white;
    padding: 2rem 0 !important;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

footer strong {
    color: var(--text-dark);
}

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

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

footer .list-unstyled {
    margin: 0;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner p {
    margin-bottom: 1rem;
    color: white;
}

.cookie-banner .btn-primary {
    margin-right: 1rem;
}

.cookie-banner a {
    color: white;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        margin-bottom: 2rem;
    }

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

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

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

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

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

    .nav {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        margin-left: 0 !important;
    }

    .nav-link {
        margin-left: 0 !important;
        padding: 0.5rem 0;
    }

    .row.align-items-center {
        flex-direction: column;
    }

    .col-lg-6.order-lg-2,
    .col-lg-6.order-lg-1 {
        order: 0 !important;
        margin-bottom: 1.5rem;
    }

    footer .row {
        flex-direction: column;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner .btn-primary {
        margin-right: 0;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

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

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

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }
}
