/* 
   Palette: Pastel Lavender (Version 5 Unique)
   Primary: #9B59B6 (Amethyst)
   Secondary: #E8DAEF (Light Lavender)
   Accent: #F1948A (Soft Coral)
   Background: #FDFEFE (Off-white)
   Text: #2C3E50 (Dark Slate)
   Footer: #4A235A (Dark Purple)
*/

:root {
    --v5-primary: #9B59B6;
    --v5-secondary: #E8DAEF;
    --v5-accent: #F1948A;
    --v5-bg: #FDFEFE;
    --v5-text: #2C3E50;
    --v5-text-light: #5D6D7E;
    --v5-footer-bg: #4A235A;
    --v5-white: #FFFFFF;
    --v5-radius: 16px;
    --v5-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--v5-bg);
    color: var(--v5-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.v5-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v5-section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--v5-primary);
    margin-bottom: 40px;
    line-height: 1.2;
}

.v5-paragraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--v5-text-light);
}

/* Buttons */
.v5-btn-primary {
    display: inline-block;
    background-color: var(--v5-primary);
    color: var(--v5-white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.v5-btn-primary:hover {
    background-color: var(--v5-footer-bg);
    transform: translateY(-2px);
}

.v5-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--v5-primary);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--v5-primary);
    transition: all 0.3s ease;
}

.v5-btn-outline:hover {
    background-color: var(--v5-primary);
    color: var(--v5-white);
}

/* Header Layout (Strictly from prompt) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--v5-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    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(--v5-primary);
    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(--v5-primary);
    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 .nav-list a {
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav .nav-list a:hover {
    color: var(--v5-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(--v5-white);
    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(--v5-secondary);
}

@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); }
}

/* Footer */
.site-footer {
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.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: 2fr 1fr 1fr; }
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: var(--v5-white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    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(--v5-primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--v5-primary); color: #fff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
.cookie-btn-decline { background: #eee; color: #333; border: none; padding: 10px 20px; border-radius: 5px; 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; }
}

/* =========================================
   INDEX.HTML - UNIQUE V5 STYLES
   ========================================= */

/* Vertical Hero */
.v5-hero-vertical {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.v5-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 40px;
}

.v5-badge {
    display: inline-block;
    background-color: var(--v5-secondary);
    color: var(--v5-footer-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.v5-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--v5-footer-bg);
    margin-bottom: 24px;
    line-height: 1.1;
}

.v5-hero-text {
    font-size: 18px;
    color: var(--v5-text-light);
    margin-bottom: 32px;
}

.v5-hero-image-wrapper {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.v5-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Intro Section */
.v5-intro-section {
    padding: 80px 0;
    background-color: var(--v5-white);
}

.v5-intro-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Asymmetrical Grid */
.v5-asym-benefits {
    padding: 80px 0;
    background-color: var(--v5-secondary);
}

.v5-asym-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .v5-asym-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .v5-card-large {
        grid-row: span 2;
    }
    .v5-card-wide {
        grid-column: span 2;
    }
}

.v5-card {
    background: var(--v5-white);
    padding: 40px;
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
    transition: transform 0.3s ease;
}

.v5-card:hover {
    transform: translateY(-5px);
}

.v5-card-icon {
    font-size: 48px;
    font-weight: bold;
    color: var(--v5-secondary);
    margin-bottom: 20px;
    line-height: 1;
}

.v5-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--v5-footer-bg);
}

/* Overlap Section */
.v5-overlap-section {
    padding: 100px 0;
}

.v5-overlap-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.v5-overlap-image {
    width: 100%;
    border-radius: var(--v5-radius);
    overflow: hidden;
}

.v5-overlap-content {
    background: var(--v5-white);
    padding: 40px;
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    width: 90%;
    align-self: center;
}

@media (min-width: 992px) {
    .v5-overlap-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .v5-overlap-image {
        width: 60%;
    }
    .v5-overlap-content {
        width: 50%;
        margin-top: 0;
        margin-left: -10%;
        padding: 60px;
    }
}

.v5-custom-list {
    list-style: none;
    margin-top: 20px;
}

.v5-custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--v5-text-light);
}

.v5-custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--v5-accent);
    font-weight: bold;
}

/* Stats Section */
.v5-stats-section {
    background-color: var(--v5-footer-bg);
    padding: 60px 0;
    color: var(--v5-white);
}

.v5-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .v5-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.v5-stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--v5-accent);
    margin-bottom: 10px;
}

.v5-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Horizontal Scroll Testimonials */
.v5-horizontal-scroll-section {
    padding: 80px 0;
    overflow: hidden;
}

.v5-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--v5-primary) var(--v5-secondary);
}

.v5-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.v5-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--v5-secondary);
    border-radius: 4px;
}

.v5-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--v5-primary);
    border-radius: 4px;
}

.v5-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.v5-testimonial-card {
    width: 350px;
    background: var(--v5-white);
    padding: 30px;
    border-radius: var(--v5-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--v5-accent);
}

.v5-quote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--v5-text-light);
}

.v5-author {
    font-weight: bold;
    color: var(--v5-primary);
}

/* =========================================
   PROGRAM.HTML - UNIQUE V5 STYLES
   ========================================= */

.v5-page-header {
    background-color: var(--v5-secondary);
    padding: 80px 0 60px;
    text-align: center;
}

.v5-page-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--v5-footer-bg);
    margin-bottom: 20px;
}

.v5-page-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--v5-text-light);
}

.v5-methodology-section {
    padding: 80px 0;
}

.v5-method-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .v5-method-intro {
        flex-direction: row;
        align-items: center;
    }
    .v5-method-img, .v5-method-text {
        flex: 1;
    }
}

.v5-method-img {
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
}

/* Alternating Vertical Timeline */
.v5-alternating-modules {
    padding: 60px 0;
    background-color: var(--v5-white);
}

.v5-module-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .v5-module-row {
        flex-direction: row;
        justify-content: center;
    }
    .v5-row-reverse {
        flex-direction: row-reverse;
    }
    .v5-module-content {
        width: 50%;
    }
}

.v5-module-number {
    font-size: 80px;
    font-weight: bold;
    color: var(--v5-secondary);
    line-height: 1;
    padding: 0 40px;
}

.v5-module-content h3 {
    font-size: 24px;
    color: var(--v5-primary);
    margin-bottom: 16px;
}

.v5-module-content p {
    color: var(--v5-text-light);
    margin-bottom: 12px;
}

/* Pure CSS Accordion */
.v5-faq-section {
    padding: 80px 0;
    background-color: var(--v5-secondary);
}

.v5-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.v5-accordion-item {
    background: var(--v5-white);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.v5-accordion-title {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--v5-footer-bg);
}

.v5-accordion-title::-webkit-details-marker {
    display: none;
}

.v5-accordion-title::after {
    content: '+';
    font-size: 24px;
    color: var(--v5-primary);
}

details[open] .v5-accordion-title::after {
    content: '-';
}

.v5-accordion-content {
    padding: 0 20px 20px;
    color: var(--v5-text-light);
}

/* =========================================
   MISSION.HTML - UNIQUE V5 STYLES
   ========================================= */

/* Sticky Story Layout */
.v5-sticky-story-section {
    padding: 80px 0;
}

.v5-sticky-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .v5-sticky-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .v5-sticky-sidebar {
        width: 40%;
        position: sticky;
        top: 100px;
    }
    .v5-story-content {
        width: 60%;
    }
}

.v5-sticky-sidebar h2 {
    font-size: 36px;
    color: var(--v5-primary);
    margin-bottom: 20px;
}

.v5-sidebar-img {
    margin-top: 30px;
    border-radius: var(--v5-radius);
}

.v5-story-block {
    background: var(--v5-white);
    padding: 40px;
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
    margin-bottom: 40px;
    border-left: 4px solid var(--v5-primary);
}

.v5-year-badge {
    display: inline-block;
    background: var(--v5-accent);
    color: var(--v5-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 16px;
}

.v5-story-block h3 {
    margin-bottom: 16px;
    color: var(--v5-footer-bg);
}

.v5-story-block p {
    color: var(--v5-text-light);
    margin-bottom: 12px;
}

/* Values Grid */
.v5-values-section {
    padding: 80px 0;
    background-color: var(--v5-secondary);
}

.v5-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .v5-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.v5-value-card {
    background: var(--v5-white);
    padding: 30px;
    border-radius: var(--v5-radius);
    text-align: center;
}

.v5-value-card h4 {
    color: var(--v5-primary);
    margin-bottom: 16px;
    font-size: 20px;
}

/* Manifesto */
.v5-manifesto-section {
    padding: 100px 0;
    background-image: linear-gradient(to right, var(--v5-footer-bg), var(--v5-primary));
    color: var(--v5-white);
    text-align: center;
}

.v5-manifesto-box {
    max-width: 800px;
    margin: 0 auto;
}

.v5-manifesto-box h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.v5-manifesto-box p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    color: var(--v5-white);
}

/* =========================================
   CONTACT.HTML - UNIQUE V5 STYLES
   ========================================= */

.v5-contact-section {
    padding: 80px 0;
}

.v5-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .v5-contact-layout {
        grid-template-columns: 1fr 2fr;
    }
}

.v5-contact-info-card {
    background: var(--v5-secondary);
    padding: 40px;
    border-radius: var(--v5-radius);
    height: 100%;
}

.v5-contact-info-card h3 {
    color: var(--v5-footer-bg);
    margin-bottom: 20px;
}

.v5-info-item {
    margin-top: 24px;
}

.v5-info-item strong {
    display: block;
    color: var(--v5-primary);
    margin-bottom: 4px;
}

.v5-form-wrapper {
    background: var(--v5-white);
    padding: 40px;
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
}

.v5-form-wrapper h2 {
    margin-bottom: 30px;
    color: var(--v5-footer-bg);
}

.v5-form-group {
    margin-bottom: 20px;
}

.v5-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--v5-text);
}

.v5-form-group input,
.v5-form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.v5-form-group input:focus,
.v5-form-group textarea:focus {
    outline: none;
    border-color: var(--v5-primary);
}

.v5-btn-submit {
    width: 100%;
    background: var(--v5-primary);
    color: var(--v5-white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.v5-btn-submit:hover {
    background: var(--v5-footer-bg);
}

/* =========================================
   LEGAL & THANK YOU PAGES
   ========================================= */

.v5-legal-section {
    padding: 80px 0;
}

.v5-legal-content {
    max-width: 800px;
    background: var(--v5-white);
    padding: 40px;
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
}

.v5-legal-content h1 {
    color: var(--v5-primary);
    margin-bottom: 10px;
}

.v5-legal-content h2 {
    color: var(--v5-footer-bg);
    margin: 30px 0 15px;
}

.v5-legal-content p {
    margin-bottom: 16px;
    color: var(--v5-text-light);
}

.v5-thank-section {
    padding: 100px 0;
    text-align: center;
}

.v5-thank-content {
    max-width: 600px;
}

.v5-thank-icon {
    width: 80px;
    height: 80px;
    background: var(--v5-accent);
    color: var(--v5-white);
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.v5-thank-content h1 {
    color: var(--v5-footer-bg);
    margin-bottom: 20px;
}

.v5-thank-next-steps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--v5-secondary);
}

.v5-thank-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}