:root {
    --bg-color: #F8F8F8;
    --primary-color: #3F51B5;
    --secondary-color: #607D8B;
    --text-color: #757575;
    --accent-color: #9C27B0;
    --white: #ffffff;
    --dark: #212121;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Lora', serif;
    line-height: 1.8;
    margin: 0;
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-top: 3rem; margin-bottom: 1.5rem; color: var(--secondary-color); }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 2rem;
}

.nav-link {
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

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

.hero-section::before {
    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;
    margin: 0 auto;
}

.hero-section h1 { color: var(--white); }

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

.card-custom {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 40px;
    box-shadow: 10px 10px 0px rgba(63, 81, 181, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 0px rgba(156, 39, 176, 0.1);
    border-bottom: 4px solid var(--accent-color);
}

.btn-custom {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.btn-custom:hover {
    opacity: 0.9;
    color: var(--white);
}

.img-container img {
    max-width: 100%;
    height: auto;
    box-shadow: 20px 20px 0px var(--bg-color), 21px 21px 0px var(--secondary-color);
}

.disclaimer-box {
    background-color: #fff3f3;
    border-left: 5px solid #ffcdd2;
    padding: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
}

footer {
    background-color: var(--dark);
    color: #bdbdbd;
    padding: 60px 0 20px;
}

footer h4 { color: var(--white); margin-bottom: 20px; }

.footer-link {
    color: #bdbdbd;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-link:hover { color: var(--accent-color); }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.glossary-rail {
    border-left: 1px solid var(--secondary-color);
    padding-left: 20px;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.comparison-table th { background: var(--secondary-color); color: white; }

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    padding: 20px;
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}