:root {
    --primary-indigo: #2C3E50;
    --warm-gray: #F0F0F0;
    --pale-beige: #F8F8F8;
    --teal-accent: #20B2AA;
    --goldenrod: #DAA520;
    --text-main: #333333;
    --text-muted: #666666;
}

body {
    font-family: 'Lora', serif; /* Humanist Serif for body */
    background-color: var(--pale-beige);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, .nav-link {
    font-family: 'Montserrat', sans-serif; /* Geometric Grotesque for headings */
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-weight: 300; font-size: 3.5rem; color: var(--primary-indigo); }
h2 { font-weight: 600; font-size: 2rem; color: var(--primary-indigo); border-left: 4px solid var(--teal-accent); padding-left: 15px; margin-bottom: 1.5rem; }
h3 { font-weight: 700; font-size: 1.25rem; color: var(--primary-indigo); }

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 20px 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-indigo) !important;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(44, 62, 80, 0.7);
    padding: 60px;
    max-width: 800px;
    color: white;
    text-align: center;
}

.hero-overlay h1 { color: white; margin-bottom: 20px; }

/* Cards & Layouts */
.principle-card {
    background: var(--warm-gray);
    padding: 40px;
    border-radius: 4px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
}

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

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

.img-cinematic {
    box-shadow: 20px 20px 0 var(--warm-gray);
    filter: contrast(1.1) brightness(0.9);
    max-width: 100%;
    height: auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--teal-accent);
}

.timeline-item {
    margin-bottom: 60px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) { margin-left: auto; padding-left: 40px; }
.timeline-item:nth-child(odd) { padding-right: 40px; text-align: right; }

/* Buttons */
.btn-qujamo {
    background: var(--primary-indigo);
    color: var(--goldenrod);
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
}

.btn-qujamo:hover {
    background: var(--teal-accent);
    color: white;
    text-decoration: none;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary-indigo);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

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

.footer-area a { color: var(--warm-gray); }
.footer-area a:hover { color: var(--teal-accent); }

/* FAQ Accordion */
.accordion-btn {
    width: 100%;
    text-align: left;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
}

.disclaimer-box {
    border: 2px solid var(--teal-accent);
    padding: 30px;
    margin: 40px 0;
    background: rgba(32, 178, 170, 0.05);
}