/* 
   Color Palette: Forest Green & Terracotta (NO BLUE)
   Primary: #1B4332 (Deep Forest Green)
   Secondary: #E07A5F (Warm Terracotta)
   Accent: #95D5B2 (Soft Sage)
   Background: #F4F1DE (Sand)
   Text Dark: #2D3142
*/

:root {
    --primary: #431b29;
    --secondary: #E07A5F;
    --accent: #b5496f;
    --bg-light: #F4F1DE;
    --bg-white: #FFFFFF;
    --text-dark: #2D3142;
    --text-light: #FFFFFF;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-title-margin { margin-bottom: 40px; font-size: clamp(24px, 4vw, 36px); color: var(--primary); }
.bg-light-section { background-color: var(--bg-light); padding: 60px 0; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary {
    background-color: var(--secondary);
    color: var(--text-light);
}
.btn-primary:hover { background-color: #c9654b; }
.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
}
.btn-full { width: 100%; }

/* Header Layout (Strict Template) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary);
    color: var(--text-light);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
}
.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;
    background-color: var(--text-light);
    transition: 0.3s;
}
.menu-checkbox { display: none; }
.desktop-nav { display: block; }
.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.desktop-nav a:hover { color: var(--accent); }
.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(--primary);
}
.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@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); }
}

/* VERSION 4 UNIQUE: Hero Grid Overlap */
.hero-v4 {
    background-color: var(--bg-light);
    padding: 60px 20px;
    overflow: hidden;
}
.hero-v4-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.hero-v4-image {
    position: relative;
}
.hero-v4-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hero-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.3);
}
.badge-number { font-size: 28px; font-weight: bold; line-height: 1; }
.badge-text { font-size: 12px; text-transform: uppercase; margin-top: 5px; }
.hero-subtitle { color: var(--secondary); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.hero-title { font-size: clamp(32px, 5vw, 48px); color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.hero-text { margin-bottom: 20px; font-size: 18px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; }

@media (min-width: 992px) {
    .hero-v4 { padding: 100px 20px; }
    .hero-v4-container { grid-template-columns: 5fr 6fr; gap: 60px; }
    .hero-v4-content { padding-left: 40px; }
}

/* VERSION 4 UNIQUE: Stats Bar */
.stats-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 40px 0;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-value { font-size: 40px; font-weight: bold; color: var(--accent); margin-bottom: 5px; }
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
@media (min-width: 768px) {
    .stats-container { grid-template-columns: repeat(4, 1fr); }
}

/* VERSION 4 UNIQUE: Vertical Timeline */
.timeline-section { padding: 80px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.timeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
}
.timeline-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 22px; }
.timeline-content p { margin-bottom: 15px; }

/* VERSION 4 UNIQUE: Diagonal Split */
.diagonal-split {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.diagonal-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: var(--bg-light);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: -1;
}
.diagonal-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.diagonal-content h2 { color: var(--primary); font-size: 32px; margin-bottom: 20px; }
.diagonal-content p { margin-bottom: 20px; }
.custom-list { list-style: none; margin-top: 20px; }
.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}
.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}
.floating-img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}
.floating-img:hover { transform: rotate(0deg); }
@media (min-width: 992px) {
    .diagonal-container { grid-template-columns: 1fr 1fr; }
}

/* VERSION 4 UNIQUE: Masonry Testimonials */
.masonry-testimonials { padding: 80px 0; background-color: var(--bg-white); }
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.masonry-item {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
}
.quote-icon {
    font-size: 60px;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.5;
    font-family: serif;
}
.masonry-item p { position: relative; z-index: 2; font-style: italic; margin-bottom: 20px; }
.author { font-weight: bold; color: var(--primary); }
@media (min-width: 768px) {
    .masonry-grid { grid-template-columns: repeat(3, 1fr); }
    .masonry-item:nth-child(2) { transform: translateY(30px); }
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}
.page-header h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 20px; }
.page-header p { max-width: 700px; margin: 0 auto; font-size: 18px; opacity: 0.9; }

/* VERSION 4 UNIQUE: Numbered Modules (Program) */
.numbered-modules { padding: 80px 0; }
.num-module-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    align-items: center;
}
.num-bg {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 150px;
    font-weight: bold;
    color: var(--bg-light);
    z-index: -1;
    line-height: 1;
}
.num-content h2 { color: var(--primary); font-size: 32px; margin-bottom: 20px; }
.num-content p { margin-bottom: 20px; }
.num-image img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.placeholder-box {
    background-color: var(--accent);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}
@media (min-width: 992px) {
    .num-module-item { grid-template-columns: 1fr 1fr; }
    .reverse-layout .num-content { order: 2; }
    .reverse-layout .num-image { order: 1; }
    .reverse-layout .num-bg { left: auto; right: 0; }
}

/* VERSION 4 UNIQUE: Grid FAQ */
.grid-faq-section { padding: 80px 0; background-color: var(--bg-light); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.faq-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary);
}
.faq-card h3 { color: var(--primary); margin-bottom: 15px; }
@media (min-width: 768px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* VERSION 4 UNIQUE: Story Split (Mission) */
.story-split-section { padding: 80px 0; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.rounded-img { border-radius: 16px; }
.shadow-img { box-shadow: 0 20px 40px rgba(27, 67, 50, 0.15); }
.story-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 14px;
}
.accent-text { color: var(--secondary); font-weight: bold; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.story-text-col h2 { color: var(--primary); font-size: 36px; margin-bottom: 25px; }
.story-text-col p { margin-bottom: 20px; }
@media (min-width: 992px) {
    .story-grid { grid-template-columns: 5fr 7fr; }
}

/* VERSION 4 UNIQUE: Asymmetric Values */
.values-asymmetric { padding: 80px 0; background-color: var(--bg-light); }
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.value-box {
    padding: 40px;
    border-radius: 12px;
    background-color: var(--bg-white);
}
.value-box h3 { margin-bottom: 15px; font-size: 24px; color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-accent h3, .bg-accent p { color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary h3, .bg-secondary p { color: var(--text-light); }
@media (min-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .box-large { grid-column: span 2; }
    .box-small { grid-column: span 1; }
}

/* Manifesto */
.manifesto-section { padding: 100px 0; text-align: center; }
.manifesto-container { max-width: 800px; }
.manifesto-container h2 { font-size: 40px; color: var(--primary); margin-bottom: 40px; }
.manifesto-content p { font-size: 20px; margin-bottom: 25px; line-height: 1.8; }
.manifesto-img { border-radius: 12px; margin-top: 40px; width: 100%; height: 300px; object-fit: cover; }

/* VERSION 4 UNIQUE: Sidebar Contact Layout */
.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.sidebar-info-box {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
}
.sidebar-info-box h3 { font-size: 24px; margin-bottom: 20px; color: var(--accent); }
.sidebar-info-box > p { margin-bottom: 30px; opacity: 0.9; }
.contact-detail-item { margin-bottom: 25px; }
.contact-detail-item strong { display: block; color: var(--accent); margin-bottom: 5px; }
.form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-wrapper h2 { color: var(--primary); margin-bottom: 10px; }
.form-wrapper > p { margin-bottom: 30px; color: #666; }
.custom-form .form-group { margin-bottom: 20px; }
.custom-form label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--primary); }
.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}
.custom-form input:focus, .custom-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}
@media (min-width: 768px) {
    .sidebar-layout { grid-template-columns: 1fr 2fr; }
}

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-container { max-width: 800px; }
.legal-container h1 { color: var(--primary); margin-bottom: 10px; }
.legal-container > p { color: #666; margin-bottom: 40px; }
.legal-content h2 { color: var(--primary); margin: 30px 0 15px; font-size: 22px; }
.legal-content p { margin-bottom: 15px; }

/* Thank You Page */
.thank-you-main { padding: 100px 0; min-height: 60vh; display: flex; align-items: center; }
.thank-you-box { max-width: 600px; margin: 0 auto; }
.success-icon {
    width: 80px; height: 80px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; font-weight: bold;
    margin: 0 auto 30px;
}
.thank-you-box h1 { color: var(--primary); margin-bottom: 20px; }
.thank-you-box p { margin-bottom: 40px; font-size: 18px; }
.next-steps { background-color: var(--bg-light); padding: 40px; border-radius: 8px; }
.next-steps h3 { margin-bottom: 15px; color: var(--primary); }
.thank-you-actions { display: flex; gap: 15px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.page-header {
    margin-bottom: 30px;
}
/* Footer (Hardcoded colors for translation protection) */
.site-footer {
    background-color: #431b29 !important;
    color: #FFFFFF !important;
    padding: 60px 20px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF !important;
    display: block;
    margin-bottom: 15px;
}
.footer-brand p { color: #FFFFFF !important; opacity: 0.8; }
.site-footer h3 { color: #95D5B2 !important; margin-bottom: 20px; font-size: 18px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #FFFFFF !important; opacity: 0.8; transition: opacity 0.3s; }
.site-footer a:hover { opacity: 1; color: #E07A5F !important; }
.footer-contact p { color: #FFFFFF !important; opacity: 0.8; margin-bottom: 10px; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { color: #FFFFFF !important; opacity: 0.6; font-size: 14px; }

@media (min-width: 768px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: var(--text-dark);
    color: var(--text-light);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold;
}
.cookie-btn-accept { background-color: var(--accent); color: var(--primary); }
.cookie-btn-decline { background-color: transparent; color: var(--text-light); border: 1px solid var(--text-light); }
@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; }
}