:root {
    --graphite: #36454F;
    --sand-beige: #F5F5DC;
    --soft-olive: #8B8B5B;
    --deep-cornflower: #2A3A5D;
    --white: #FFFFFF;
    --light-grey: #E0E0E0;
}

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

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    color: var(--deep-cornflower);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; border-bottom: 2px solid var(--soft-olive); padding-bottom: 10px; }
h3 { font-size: 1.8rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

header {
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--graphite) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--graphite) !important;
    font-weight: 400;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover { color: var(--deep-cornflower) !important; }

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

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

.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-content h1 { color: var(--white); }

.section-padding { padding: 80px 0; }
.bg-beige { background-color: var(--sand-beige); }

.card-info {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--light-grey);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-poreno {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--deep-cornflower);
    color: var(--deep-cornflower);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-poreno:hover {
    background: var(--deep-cornflower);
    color: var(--white);
}

.footer {
    background: var(--graphite);
    color: var(--light-grey);
    padding: 60px 0 30px;
}

.footer h4 { color: var(--sand-beige); margin-bottom: 25px; }
.footer a { color: var(--light-grey); text-decoration: none; }
.footer a:hover { color: var(--white); }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--graphite);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.disclaimer-box {
    border: 2px solid var(--soft-olive);
    padding: 30px;
    margin: 40px 0;
    background: rgba(139, 139, 91, 0.05);
}

.blog-card { margin-bottom: 40px; }
.blog-card img { width: 100%; height: 300px; object-fit: cover; }

.quote-box {
    font-style: italic;
    font-size: 1.4rem;
    padding: 40px;
    border-left: 5px solid var(--soft-olive);
    background: var(--sand-beige);
    margin: 40px 0;
}

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