/* 
   Palette Version 2: Purple, Lavender, Gold, Dark Charcoal
   NO BLUE, NO GREEN.
*/
:root {
    --primary: #4A235A;       /* Deep Purple */
    --secondary: #D7BDE2;     /* Soft Lavender */
    --accent: #F4D03F;        /* Warm Gold */
    --dark: #2C3E50;          /* Dark Charcoal */
    --light: #FDFEFE;         /* Off-White */
    --text-main: #333333;
    --text-muted: #666666;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.text-align-center { text-align: center; }
.text-white { color: var(--light) !important; }
.bg-dark-charcoal { background-color: var(--dark); }
.bg-light-purple { background-color: #F5EEF8; }

/* Layout Utilities */
.container-standard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-subtitle-center {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #D4AC0D;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-full {
    width: 100%;
}

/* Header Layout (Strictly from prompt) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary);
    color: var(--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(--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(--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 {
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
}

.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);
}

.mobile-nav a {
    color: var(--light);
    display: block;
}

@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 2 UNIQUE LAYOUTS (INDEX)
   ========================================= */

/* Diagonal Hero */
.hero-diagonal {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-content-wrapper {
    padding: 60px 20px;
    z-index: 2;
    color: var(--light);
}

.hero-text-area {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    color: var(--accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hero-main-title {
    color: var(--light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image-area {
    width: 100%;
    height: 400px;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-diagonal {
        flex-direction: row;
        align-items: center;
    }
    .hero-content-wrapper {
        width: 50%;
        padding: 0 5%;
    }
    .hero-text-area {
        text-align: left;
        margin: 0;
    }
    .hero-image-area {
        width: 50%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* Intro Section */
.intro-header {
    text-align: center;
    margin-bottom: 40px;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto;
}

.intro-text-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .intro-text-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* 2x2 Grid Layout */
.grid-2x2-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2x2-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.pillar-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.pillar-icon {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

/* Overlap Section */
.overlap-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overlap-image-box {
    width: 100%;
}

.overlap-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overlap-content-box {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (min-width: 992px) {
    .overlap-wrapper {
        flex-direction: row;
        align-items: center;
        position: relative;
    }
    .overlap-image-box {
        width: 60%;
    }
    .overlap-content-box {
        width: 50%;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Accordion FAQ */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    display: block;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    color: var(--accent);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 300px;
    padding-bottom: 20px;
}

.accordion-toggle:checked ~ .accordion-header::after {
    transform: rotate(45deg);
}

/* =========================================
   VERSION 2 UNIQUE LAYOUTS (PROGRAM)
   ========================================= */
.page-header {
    padding: 80px 20px;
}

.page-subtitle {
    color: var(--secondary);
    font-size: 1.2rem;
}

.numbered-step {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.step-number {
    font-size: 5rem;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1;
}

.step-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .numbered-step {
        flex-direction: row;
        align-items: flex-start;
    }
    .step-reverse {
        flex-direction: row-reverse;
    }
    .step-number {
        width: 20%;
        text-align: center;
    }
    .step-content {
        width: 80%;
    }
}

.step-image-break {
    margin: 60px 0;
}

.full-width-rounded-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-box {
    background: var(--light);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   VERSION 2 UNIQUE LAYOUTS (MISSION)
   ========================================= */
.mission-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .mission-split-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.mission-img-tall {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.accent-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.values-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .values-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

.value-item h3 {
    color: var(--accent);
}

.value-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.manifesto-box {
    max-width: 800px;
}

.manifesto-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.8;
}

/* =========================================
   VERSION 2 UNIQUE LAYOUTS (CONTACT)
   ========================================= */
.contact-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .contact-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    background: var(--light);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark);
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
}

.legal-content h1 { margin-bottom: 10px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 15px; color: var(--primary); }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; }
.legal-content li { margin-bottom: 10px; }

/* Thank You Page */
.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.next-steps {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* =========================================
   FOOTER (Strictly Hardcoded Colors)
   ========================================= */
.site-footer {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.footer-desc {
    color: #cccccc !important;
}

.footer-links h4, .footer-legal h4 {
    color: #ffffff !important;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #cccccc !important;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #F4D03F !important;
}

.footer-contact-info {
    margin-top: 20px;
    color: #cccccc !important;
}

.footer-contact-info a {
    color: #F4D03F !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #333333 !important;
    text-align: center;
    color: #999999 !important;
    font-size: 0.9rem;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
#cookie-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--dark);
    color: var(--light);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 16px;
    transform: translateY(0); 
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

#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(--accent);
    text-decoration: underline;
}

.cookie-btns { 
    display: flex; 
    gap: 10px; 
    flex-shrink: 0; 
    flex-wrap: wrap; 
}

.cookie-btn-accept {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--light);
    padding: 8px 20px;
    border-radius: 4px;
    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; }
}