:root {
    --primary: #4A4E5A;
    --accent-green: #6B8E23;
    --accent-blue: #004C8F;
    --bg-sand: #F8F4E3;
    --text-dark: #2D2D2D;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    margin: 0;
}

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

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    padding: 1rem 2rem;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(74, 78, 90, 0.7);
    backdrop-filter: blur(5px);
}

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

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

.card-custom {
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.btn-plozen {
    background-color: var(--accent-blue);
    color: var(--white);
    border-radius: 0;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
}

.btn-plozen:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer a {
    color: var(--bg-sand);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.accordion .card-header {
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.img-standard {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.institutional-divider {
    height: 2px;
    background: var(--accent-green);
    width: 60px;
    margin: 20px 0;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box {
    border: 1px solid var(--accent-blue);
    padding: 20px;
    margin: 30px 0;
    background: rgba(0, 76, 143, 0.05);
}