:root {
    --green-dark: #2E5E3D;
    --green: #6F8F72;
    --beige: #E7E1D3;
    --light: #F8F8F5;
    --text: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

.header {
    background: var(--white);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo span {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--green-dark);
    letter-spacing: 2px;
}

.logo small {
    font-size: 13px;
    color: #555;
}

nav a {
    margin-left: 22px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
}

.btn-nav {
    background: var(--green-dark);
    color: var(--white) !important;
    padding: 10px 16px;
    border-radius: 30px;
}

.hero {
    min-height: 560px;
    background: linear-gradient(rgba(46,94,61,0.75), rgba(46,94,61,0.75)),
                url("../images/hero-vexin.jpg") center/cover no-repeat;
    color: var(--white);
}

.overlay {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 23px;
    margin-bottom: 15px;
}

.slogan {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.hero-buttons a,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--beige);
    color: var(--green-dark);
}

.section {
    padding: 70px 0;
    background: var(--white);
}

.section.light {
    background: var(--beige);
}

.section h2 {
    font-size: 36px;
    color: var(--green-dark);
    margin-bottom: 25px;
}

.section h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.section p {
    font-size: 18px;
    margin-bottom: 15px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid div {
    background: var(--light);
    padding: 25px;
    border-radius: 16px;
}

.quote {
    background: var(--green-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.quote blockquote {
    font-size: 32px;
    font-style: italic;
    font-weight: bold;
}

.contact a {
    color: var(--green-dark);
    font-weight: bold;
}

.footer {
    background: #1f3f2a;
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: var(--beige);
    text-decoration: none;
}

.footer-content p {
    margin-bottom: 8px;
}

@media screen and (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 19px;
    }

    .slogan {
        font-size: 22px;
    }

    .cards,
    .grid {
        grid-template-columns: 1fr;
    }

    .quote blockquote {
        font-size: 24px;
    }
}
/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 63, 42, 0.96);
    color: white;
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn.accept {
    background: #79A86F;
    color: white;
}

.cookie-btn.accept:hover {
    background: #648f5c;
}

.cookie-btn.decline {
    background: #E7E1D3;
    color: #2E5E3D;
}

.cookie-btn.decline:hover {
    background: #d9d1bf;
}

@media screen and (max-width: 768px) {

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

}