:root {
    --primary: #F0F2F5;
    --secondary: #A7B6C8;
    --accent-1: #E0B4B4;
    --accent-2: #60748F;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding-top: 80px;
}

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

h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--secondary); display: inline-block; padding-bottom: 10px; }
h3 { font-size: 1.75rem; }

.header-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--secondary);
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent-2) !important;
}

.nav-link {
    font-weight: 400;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

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

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

.hero-full {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.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;
    max-width: 800px;
}

.institutional-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    border-left: 5px solid var(--accent-2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.img-container {
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0px var(--secondary);
    margin-bottom: 30px;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.btn-accent {
    background-color: var(--accent-1);
    color: var(--white);
    border-radius: 0;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.btn-outline {
    border: 1px solid var(--accent-2);
    color: var(--accent-2);
    border-radius: 0;
    padding: 10px 25px;
}

.footer-section {
    background: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--secondary);
    margin-top: 100px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent-2);
    padding: 20px 0;
    z-index: 2000;
    display: none;
}

.disclaimer-box {
    background: var(--secondary);
    padding: 30px;
    margin: 40px 0;
    color: var(--text-dark);
    font-style: italic;
}

.glossary-rail {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

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

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

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

.product-grid-card {
    border: 1px solid var(--secondary);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-grid-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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