/* 
   Palette Version 5: Pastel / Lavender / Peach
   Primary: #DDA0DD (Plum/Lavender)
   Secondary: #FFB6C1 (Light Pink)
   Accent: #FF7F50 (Coral/Peach)
   Background: #FFF5EE (Seashell)
   Text: #4A4A4A (Dark Grey)
   Footer: #2D283E (Deep Purple/Grey)
*/

:root {
    --primary-color: #DDA0DD;
    --primary-dark: #BA55D3;
    --secondary-color: #FFB6C1;
    --accent-color: #FF7F50;
    --accent-hover: #FF6347;
    --bg-color: #FFF5EE;
    --bg-light: #FFFFFF;
    --text-color: #4A4A4A;
    --text-light: #7A7A7A;
    --footer-bg: #2D283E;
    --footer-text: #FFFFFF;
    --border-color: #EEDCDB;
    --shadow-light: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-heavy: 0 10px 30px rgba(45, 40, 62, 0.1);
    --radius: 12px;
    --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-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    color: #2D283E;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.4rem; }

p { margin-bottom: 15px; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-center-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-white { color: #fff; }

.rounded-img { border-radius: var(--radius); }
.shadow-heavy { box-shadow: var(--shadow-heavy); }
.full-width-img { width: 100%; object-fit: cover; border-radius: var(--radius); }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.btn-full { width: 100%; }

/* Header Layout (Strictly from prompt) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-light);
    z-index: 1000;
}

.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;
    color: var(--primary-dark);
    z-index: 100;
}

.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;
    background-color: var(--text-color);
    margin: 5px 0;
    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 {
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.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-light);
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

@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);
    }
}

/* V5 Unique: Vertical Overlap Hero */
.hero-vertical {
    position: relative;
    padding-bottom: 100px;
}

.hero-image-wrapper {
    width: 100%;
    height: 60vh;
    min-height: 400px;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-overlap {
    max-width: 800px;
    margin: -150px auto 0;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #2D283E;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-content-overlap {
        margin: -80px 20px 0;
        padding: 30px 20px;
    }
}

/* V5 Unique: Horizontal Scroll Section */
.scroll-container-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: none; /* Firefox */
}
.scroll-container-wrapper::-webkit-scrollbar {
    display: none; /* Chrome */
}

.horizontal-scroll-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.scroll-card {
    width: 32%;
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .scroll-card {
        width: 100%;
    }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* V5 Unique: Diagonal Split */
.split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-container {
        grid-template-columns: 1fr 1fr;
    }
    .split-image img {
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    }
}

/* V5 Unique: Stats Bar */
.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #2D283E;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* V5 Unique: Masonry Testimonials */
.masonry-grid {
    column-count: 1;
    column-gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .masonry-grid { column-count: 2; }
}

@media (min-width: 1024px) {
    .masonry-grid { column-count: 3; }
}

.masonry-item {
    background: var(--bg-color);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    break-inside: avoid;
    border-left: 4px solid var(--secondary-color);
}

.quote-text {
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    font-weight: bold;
    color: var(--primary-dark);
}

/* CTA Banner */
.cta-banner {
    background: var(--secondary-color);
    padding: 80px 0;
}

/* Page Headers */
.page-header {
    background: var(--bg-light);
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-color);
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* V5 Unique: Numbered Modules (Program) */
.module-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

@media (min-width: 768px) {
    .module-block {
        grid-template-columns: 120px 1fr;
        gap: 50px;
    }
    .module-block.reverse-layout {
        grid-template-columns: 1fr 120px;
        text-align: right;
    }
    .module-block.reverse-layout .module-number {
        order: 2;
    }
    .module-block.reverse-layout .module-content {
        order: 1;
    }
}

.module-number {
    font-size: 5rem;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    opacity: 0.8;
}

.image-break {
    margin: 60px 0;
}

.image-break img {
    height: 400px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

/* Mission Hero */
.mission-hero {
    background: url('img/bg-1.jpg') center/cover no-repeat;
    position: relative;
}

.mission-hero-overlay {
    background: rgba(45, 40, 62, 0.7);
    padding: 100px 0;
}

/* V5 Unique: Vertical Timeline (Mission) */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-wrapper::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-light);
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

.timeline-year {
    display: inline-block;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .timeline-wrapper::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
    .timeline-item::after { left: 10px; }
    .right { left: 0; }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.manifesto-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-dark);
}

/* V5 Unique: Contact Sidebar Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 350px 1fr;
    }
}

.info-box {
    background: var(--primary-color);
    color: #2D283E;
    padding: 40px 30px;
    border-radius: var(--radius);
    height: 100%;
}

.info-item {
    margin-top: 25px;
}

.info-item a {
    color: #2D283E;
    font-weight: bold;
}

.form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.action-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer (Strictly identical structure) */
.site-footer {
    background-color: var(--footer-bg) !important;
    color: var(--footer-text) !important;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    color: var(--footer-text) !important;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-desc {
    color: #D1D1D1 !important;
}

.footer-links h4, .footer-contact h4 {
    color: var(--footer-text) !important;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: #D1D1D1 !important;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--secondary-color) !important;
}

.footer-contact p {
    color: #D1D1D1 !important;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #D1D1D1 !important;
    margin: 0;
}

.legal-links a {
    color: #D1D1D1 !important;
    margin-left: 15px;
    font-size: 0.9rem;
}

/* Cookie Banner */
#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: #1A1A1A;
    color: #FFFFFF;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
}

#cookie-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: #fff;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

@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;
    }
}