:root {
    --primary: #2D3E50;
    --accent-peach: #F7C59F;
    --accent-green: #A3D9B5;
    --accent-terracotta: #E07A5F;
    --bg-soft: #FDF9F6;
    --text-main: #333333;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: #fff;
    padding-top: 70px;
}

h1, h2, h3, h4, .navbar-brand, .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; border-left: 5px solid var(--accent-peach); padding-left: 1rem; }
h3 { font-size: 1.6rem; }

.btn-primary {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #c9654d;
    border-color: #c9654d;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 62, 80, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-padding {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.compliance-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.timeline {
    position: relative;
    border-left: 2px solid var(--accent-peach);
    padding-left: 30px;
    margin-left: 20px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stats-bar {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

.faq-accordion .card-header {
    background: white;
    cursor: pointer;
}

.brand-name {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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