/* 
Color Palette: brick-emerald
Primary: #8B3A1E
Secondary: #B04E28
Accent: #1B5E20
Tint: #FAF0EC
*/

:root {
    --color-primary: #8B3A1E;
    --color-secondary: #B04E28;
    --color-accent: #1B5E20;
    --bg-tint: #FAF0EC;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #FAF0EC;
    --text-muted: #B3B3B3;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 80px 24px;
    }
    .container-narrow {
        padding: 80px 24px;
    }
}

/* Typography */
h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--text-light);
}

h2 {
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-light);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 16px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-secondary);
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Badges and tags */
.badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 18px;
    border-radius: 999px; /* pill */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Buttons (Pill style) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* pill */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 12px 24px rgba(139, 58, 30, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(139, 58, 30, 0.4);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-dark);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--text-light);
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-secondary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* Mobile adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Corporate Clean Separators */
.border-divider {
    border-bottom: 1px solid var(--border-color);
}

/* Hero Bold Text Only (No Image) */
.hero-bold-text {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--bg-dark) 100%);
    padding: 80px 16px;
    text-align: center;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-lead {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--bg-tint);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-bold-text {
        padding: 120px 24px;
    }
}

/* Section Header Styles */
.section-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
}

/* Benefits 2x2 Grid (pill design & dramatic shadow) */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 36px; /* pill card border */
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4); /* dramatic shadow */
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Checklist Block Structure */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.checklist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checklist-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.check-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent);
    color: var(--text-light);
    border-radius: 999px; /* pill */
    font-weight: bold;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .checklist-grid {
        grid-template-columns: 4fr 6fr;
    }
    .checklist-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accordion FAQ (Details/Summary) */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-details {
    background-color: var(--bg-card);
    border-radius: 28px; /* pill style */
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-summary {
    padding: 24px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    color: var(--text-light);
}

.faq-summary:hover {
    color: var(--color-secondary);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

/* Quote Highlight */
.section-quote {
    background-color: var(--color-primary);
    text-align: center;
    padding: 80px 16px;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--color-secondary);
    display: block;
    height: 40px;
}

blockquote {
    font-size: clamp(20px, 3.5vw, 28px);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-light);
}

cite {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-tint);
}

/* Stats Bar */
.section-stats {
    background-color: var(--bg-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-size: clamp(48px, 8vw, 68px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    max-width: 250px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Program timelines / Numbered sections */
.program-intro {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 80px 16px;
    text-align: center;
}

.numbered-sections {
    padding: 80px 0;
}

.num-section-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 48px;
}

.num-section-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.num-badge {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    width: 80px;
    height: 80px;
    background-color: var(--bg-card);
    border-radius: 999px; /* pill */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.num-content {
    flex: 1;
}

@media (min-width: 768px) {
    .num-section-item {
        flex-direction: row;
        gap: 48px;
    }
}

/* Program Visual (Grid Split) */
.grid-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 36px; /* pill style */
    display: block;
}

.dramatic-shadow {
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    .grid-split {
        grid-template-columns: 1fr 1fr;
    }
}

/* Program Call to action */
.section-cta-program {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/bg-1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 16px;
    text-align: center;
}

.section-cta-program h2 {
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.section-cta-program p {
    max-width: 600px;
    margin: 0 auto 32px auto;
    color: var(--bg-tint);
}

/* Mission Split Layout */
.mission-intro {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-primary) 100%);
    padding: 80px 16px;
    text-align: center;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

.values-list {
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.value-accent {
    font-size: 24px;
    color: var(--color-accent);
}

@media (min-width: 992px) {
    .split-grid {
        grid-template-columns: 5fr 7fr;
    }
}

/* Manifesto Section */
.manifesto-section {
    background-color: var(--bg-card);
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    padding: 48px;
    border-radius: 36px; /* pill card */
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.manifesto-lead {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px; /* pill inputs */
    color: var(--text-light);
    font-family: inherit;
}

.form-group textarea {
    border-radius: 28px; /* less rounded pill for textareas */
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.info-card {
    background-color: var(--color-accent);
    padding: 40px;
    border-radius: 36px; /* pill card */
    border: 1px solid var(--border-color);
}

.info-card h3 {
    margin-bottom: 16px;
}

.info-intro {
    color: var(--bg-tint);
    margin-bottom: 32px;
}

.info-details .info-item {
    margin-bottom: 24px;
}

.info-details h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--bg-tint);
}

.info-details p {
    margin-bottom: 0;
    color: var(--text-light);
}

.accent-link {
    color: var(--text-light);
    font-weight: 700;
    text-decoration: none;
}

.accent-link:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 6fr 4fr;
    }
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-date {
    font-style: italic;
    margin-bottom: 32px;
}

.highlight-box {
    background-color: var(--bg-card);
    padding: 24px;
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    margin-bottom: 32px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.legal-section li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-section {
    padding: 80px 0;
}

.thank-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 60px 40px;
    border-radius: 36px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.thank-icon {
    font-size: 72px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 24px;
}

.thank-lead {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.next-steps-box {
    background-color: var(--bg-dark);
    padding: 32px;
    border-radius: 28px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.thank-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.thank-link-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.thank-link-card:hover {
    transform: translateY(-3px);
}

.thank-link-card h5 {
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.thank-link-card p {
    margin-bottom: 0;
    font-size: 14px;
}

@media (min-width: 576px) {
    .thank-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer (Strictly Identical styling with locked colors for translators) */
.site-footer {
    background-color: #0b0b0b !important;
    color: #FAF0EC !important;
    padding: 60px 10px 20px 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    color: #FAF0EC !important;
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-desc {
    color: #B3B3B3 !important;
    font-size: 14px;
}

.site-footer h4 {
    color: #FAF0EC !important;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    color: #B3B3B3 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #B04E28 !important;
}

.footer-contact p {
    color: #B3B3B3 !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-tel, .footer-email {
    color: #FAF0EC !important;
    font-weight: 700 !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: #888888 !important;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

/* Cookie Banner styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: #1E1E1E;
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: var(--text-light);
    font-size: 14px;
}

#cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}