/* 
  Palette: Cold Purple-Grey (Version 2)
  Primary: #2D2B38 (Deep Purple/Charcoal)
  Secondary: #8A84E2 (Lavender/Soft Purple)
  Background: #F4F4F6 (Soft Grey)
  Accent: #9B88ED (Bright Lavender)
  Text: #333333
*/

:root {
    --primary-color: #2D2B38;
    --secondary-color: #8A84E2;
    --accent-color: #9B88ED;
    --bg-light: #F4F4F6;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --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-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    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;
}

.section-title-center {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* Header Layout (Strict Rules) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary-color);
    color: #fff;
}

.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: #fff;
}

.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: #fff;
    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 {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.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(--primary-color);
}

.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: #fff;
    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); }
}

/* UNIQUE HERO V2: Diagonal Split */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-diagonal-content {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-box {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(138, 132, 226, 0.2);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text-box h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-diagonal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 600px;
    }
    .hero-diagonal-content {
        width: 50%;
        padding: 80px 5%;
    }
    .hero-diagonal-image {
        width: 50%;
        position: relative;
        padding: 0;
    }
    .hero-diagonal-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
}

.hero-diagonal-image {
    padding: 0 10px;
}

/* Intro Section */
.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* UNIQUE SECTION V2: 2x2 Grid */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card-v2 {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.benefit-card-v2:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card-v2 h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

/* UNIQUE SECTION V2: Overlap */
.overlap-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.overlap-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.overlap-card {
    background: var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .overlap-img {
        width: 80%;
        height: 500px;
    }
    .overlap-card {
        position: absolute;
        right: 0;
        bottom: -40px;
        width: 50%;
        margin-top: 0;
    }
}

.overlap-card h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.overlap-card p {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* UNIQUE SECTION V2: Accordion FAQ */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-color);
    list-style: none;
    position: relative;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--accent-color);
}

.accordion-item[open] summary::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* UNIQUE SECTION V2: Numbered Steps (Program) */
.step-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    text-shadow: 2px 2px 0px var(--secondary-color);
}

.step-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.step-content p {
    margin-bottom: 15px;
}

.step-image-break {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
}

.step-image-break img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .step-item {
        flex-direction: row;
        gap: 50px;
    }
    .step-item.reverse {
        flex-direction: row-reverse;
    }
    .step-number {
        width: 20%;
        text-align: center;
    }
    .step-content {
        width: 80%;
    }
    .step-image-break img {
        height: 400px;
    }
}

/* Stats Section */
.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-card {
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-main);
    font-weight: 500;
}

/* UNIQUE SECTION V2: Split Mission */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.split-img-box img {
    border-radius: 8px;
    box-shadow: -15px 15px 0 var(--bg-light);
}

.split-text-box h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.split-text-box p {
    margin-bottom: 20px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.value-marker {
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Manifesto */
.manifesto-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
}

.manifesto-box h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.manifesto-box p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
}

/* UNIQUE SECTION V2: Contact Layout */
.form-v2-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-v2-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.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(--accent-color);
}

.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 {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--bg-light);
    border-radius: 8px;
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-info-card p {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info-card .small-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-container > p:first-of-type {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-container p {
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thank-you-box h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-box p {
    margin-bottom: 40px;
}

.next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.next-steps h3 {
    margin-bottom: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Footer (Strict Rules) */
.site-footer {
    background-color: #1A1A1A !important;
    color: #FFFFFF !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 1fr;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    color: #FFFFFF !important;
}

.footer-desc {
    color: #CCCCCC !important;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
    color: #CCCCCC !important;
    font-size: 14px;
}

.footer-links a, .footer-contact a {
    color: #CCCCCC !important;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #FFFFFF !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333333 !important;
    color: #999999 !important;
    font-size: 14px;
}

/* 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;
    background-color: #222222;
    color: #ffffff;
    transform: translateY(0); 
    transition: transform 0.4s ease;
    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: 14px;
}

#cookie-banner a {
    color: var(--accent-color);
    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;
    font-size: 14px;
}

.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; }
}