:root {
    --primary-bg: #F0F2F5;
    --secondary-bg: #FFFFFF;
    --text-main: #343A40;
    --text-muted: #6C757D;
    --accent-teal: #5A7D7C;
    --accent-lavender: #E0BBE4;
    --accent-purple: #957DAD;
    --container-width: 1200px;
    --section-padding: 100px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Georgia', serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-link, .btn {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--accent-teal); }
h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--accent-purple); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.header {
    background: var(--secondary-bg);
    border-bottom: 1px solid #dee2e6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--accent-teal) !important;
    font-weight: 900;
}

.nav-link {
    color: var(--text-main) !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-teal) !important;
}

.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 60px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 3rem;
    max-width: 800px;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-pijolu {
    background-color: var(--accent-teal);
    color: white;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pijolu:hover {
    background-color: #4B6E6D;
    color: white;
    transform: translateY(-2px);
}

.card {
    background: var(--secondary-bg);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.footer {
    background: var(--secondary-bg);
    padding: 80px 0 40px;
    border-top: 4px solid var(--accent-teal);
}

.disclaimer-box {
    background: var(--accent-lavender);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--accent-purple);
}

.compliance-banner {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
}

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

.accordion .card-header {
    background: var(--secondary-bg);
    cursor: pointer;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    box-shadow: 20px 20px 0px var(--accent-lavender);
}

.stat-strip {
    background: var(--accent-teal);
    color: white;
    padding: 40px 0;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ced4da;
    padding: 15px;
}