:root {
    --primary: #34495E;
    --accent-green: #2ECC71;
    --accent-orange: #F39C12;
    --neutral-grey: #BDC3C7;
    --white-off: #F9F9F9;
    --text-dark: #2C3E50;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 700;
}

h1 { font-size: 4rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-top: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-top: 2rem; }

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

section {
    padding: 100px 0;
}

.bg-neutral { background-color: var(--white-off); }
.bg-primary { background-color: var(--primary); color: white; }

.hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background: rgba(52, 73, 94, 0.85);
    padding: 40px;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-content h1 {
    color: white;
    margin: 0;
}

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

.grid-mini-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card-info {
    border: 1px solid var(--neutral-grey);
    padding: 30px;
    transition: all 0.3s ease;
    background: white;
}

.card-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.btn-institutional {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s ease-in-out;
    border: none;
}

.btn-institutional:hover {
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.table-custom th {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: left;
}

.table-custom td {
    padding: 20px;
    border-bottom: 1px solid var(--neutral-grey);
}

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

.footer-top {
    border-top: 1px solid var(--neutral-grey);
    padding: 60px 0;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.blog-card {
    margin-bottom: 30px;
}

.blog-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.sidebar-info {
    background: var(--white-off);
    padding: 30px;
    border-left: 5px solid var(--accent-orange);
}

.glossary-rail {
    border-left: 2px solid var(--primary);
    padding-left: 30px;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}