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

:root {
    --primary-beige: #f5f1ed;
    --warm-white: #fafaf8;
    --muted-green: #8b9e8f;
    --soft-terracotta: #c9a886;
    --dark-charcoal: #3a3a38;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

a {
    color: var(--muted-green);
    text-decoration: none;
}

a:hover {
    color: var(--soft-terracotta);
    text-decoration: underline;
}

.navbar {
    background-color: var(--warm-white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--dark-charcoal) !important;
    letter-spacing: 0.05em;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-charcoal) !important;
    margin-left: 1.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--muted-green) !important;
}

.hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(58, 58, 56, 0.4), transparent);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.hero-content {
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    height: auto;
}

.content-section h2 {
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-charcoal);
}

.conclusion-section {
    background-color: var(--primary-beige);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--muted-green);
}

.conclusion-section h2 {
    color: var(--dark-charcoal);
}

.conclusion-section p {
    color: var(--dark-charcoal);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted-green);
}

.footer {
    background-color: var(--primary-beige);
    border-top: 1px solid #e0dbd6;
}

footer h5 {
    color: var(--dark-charcoal);
    font-weight: 600;
}

footer a {
    color: var(--dark-charcoal);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

.btn-dark {
    background-color: var(--dark-charcoal);
    border-color: var(--dark-charcoal);
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: var(--muted-green);
    border-color: var(--muted-green);
    color: white;
}

.contact-form .form-control {
    border: 1px solid #d0cbc6;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: var(--warm-white);
    color: var(--dark-charcoal);
}

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

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

.text-danger {
    color: var(--soft-terracotta) !important;
}

.alert-light {
    background-color: #f9f7f5;
    color: var(--dark-charcoal);
}

.border-2 {
    border-width: 2px !important;
    border-color: var(--muted-green) !important;
}

.custom-control-label {
    color: var(--dark-charcoal);
    cursor: pointer;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--muted-green);
    border-color: var(--muted-green);
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: white;
    margin-bottom: 0;
}

.cookie-banner .btn {
    white-space: nowrap;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #888 !important;
}

.text-md-right {
    text-align: right;
}

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

    h2 {
        font-size: 1.3rem;
    }

    .hero-banner {
        height: 250px;
    }

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

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

    .hero-overlay {
        padding: 2rem;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .container {
        padding: 1rem;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .text-md-right {
        text-align: left;
        margin-top: 2rem;
    }

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

    .cookie-content button,
    .cookie-content a {
        display: block;
        width: 100%;
        text-align: center;
    }
}

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

    h2 {
        font-size: 1.1rem;
    }

    .hero-banner {
        height: 200px;
    }

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

    .hero-content p {
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

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