:root {
    --primary: #D4E09B;
    --accent-1: #A2AD58;
    --accent-2: #517148;
    --accent-3: #C49A6C;
    --bg-light: #F7F9F7;
    --text-dark: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--accent-2);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: var(--accent-2);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: var(--accent-2);
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover { color: var(--accent-3); }

.hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

section { padding: 80px 0; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover { background: var(--accent-2); }

footer {
    background: var(--accent-2);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links { list-style: none; }
.footer-links a { color: var(--white); text-decoration: none; font-size: 14px; }
.footer-links a:hover { text-decoration: underline; }

.disclaimer-bar {
    background: #e9ecef;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    border-radius: 8px;
}

.accordion-item { border-bottom: 1px solid #ddd; padding: 20px 0; }
.accordion-header { cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; }
.accordion-content { display: none; padding-top: 15px; }

@media (max-width: 992px) {
    .two-cols, .grid-3, .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}