:root {
    --bg-color: #F5F5DC;
    --text-main: #5D5C61;
    --accent-dark: #7F8487;
    --accent-soft: #A7C5BD;
    --accent-gold: #D7C49E;
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-headers);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-dark);
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-top: 4rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--accent-gold); padding-bottom: 10px; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-main); }

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

header {
    background: rgba(245, 245, 220, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-gold);
    padding: 15px 0;
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-headers); font-size: 1.8rem; font-weight: 800; color: var(--accent-dark); text-decoration: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 30px;
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-soft); }

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 60px;
}
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

section { padding: 100px 0; }

.img-fluid { max-width: 100%; height: auto; border-radius: 2px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.card {
    background: #fff;
    border: none;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-soft);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.3s;
}
.btn-main:hover { background: var(--accent-soft); }

.footer {
    background: var(--accent-dark);
    color: #eee;
    padding: 80px 0 20px;
    margin-top: 100px;
}
.footer h3 { color: var(--accent-gold); }
.footer-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; }

.disclaimer-box {
    background: #fff;
    border: 1px solid var(--accent-gold);
    padding: 40px;
    margin: 40px 0;
    border-left: 10px solid var(--accent-gold);
}

.timeline { border-left: 2px solid var(--accent-soft); padding-left: 30px; margin-left: 20px; }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-soft);
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .container { padding: 0 20px; }
    section { padding: 60px 0; }
}