/* ============================================
   CSS Variables & Reset (from main site)
   ============================================ */
:root {
    --primary-color: #719430;
    --primary-dark: #5a7a26;
    --primary-light: #92bb46;
    --primary-lighter: #acd464;
    --primary-lightest: #e1fbb2;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Entfernt das Standard-Tap-Highlight auf Mobile */
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background-color: white;
    /* Verhindert, dass Anker unter dem Header verschwinden */
    scroll-padding-top: 80px;
}

/* Verhindert iOS Zoom bei Inputs */
input, select, textarea {
    font-size: 16px !important;
}

/* Besseres Touch-Feedback */
.btn:active, 
.mobile-fab:active,
.nav-menu a:active {
    transform: scale(0.98);
    opacity: 0.9;
}

@media (max-width: 768px) {
    /* Optimierte Abstände auf Mobilgeräten */
    .section {
        padding: 3rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
    }
    
    /* Active State für alle klickbaren Elemente */
    button:active, a:active {
        opacity: 0.8;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.highlight {
    color: var(--primary-color);
    text-decoration: underline;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    margin: 2rem auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.section-header:hover .section-divider {
    opacity: 0.9;
}

/* ============================================
   Navigation (from main site)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand-main {
    display: block;
}

.nav-brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-top: 0.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-brand:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.nav-brand:hover .nav-brand-subtitle {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Breadcrumb - nur auf mobilen Geräten sichtbar */
.mobile-breadcrumb {
    display: none;
}

/* Sticky Bar & FAB defaults (hidden on desktop) */
.mobile-sticky-bar, .mobile-fab {
    display: none;
}

/* ============================================
   Buttons (from main site)
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    border-radius: 50px;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   Hero Section (from main site)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 60px;
    max-width: 900px;
    color: #ffffff;
}

.hero-breadcrumb {
    margin-bottom: 2rem;
    text-align: left;
}

.breadcrumb-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    color: white !important;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 5rem 0;
    background: white;
    position: relative;
    scroll-margin-top: 80px;
    transition: background-color 0.4s ease;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

/* Stelle sicher, dass alle Sektionen einen Hintergrund haben */
.section:not(.why-section):not(.impact-calculator-section):not(.testimonials-section):not(.programmes-section) {
    background: white;
}

/* Sanfter Übergang zwischen Sektionen */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(113, 148, 48, 0.1), transparent);
    opacity: 0.4;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.partnership-list {
    list-style: none;
    margin: 1.5rem 0;
}

.partnership-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.partnership-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.about-video {
    margin-top: 3rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* ============================================
   Timeline
   ============================================ */
.history-section {
    margin-top: 4rem;
}

.history-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.timeline-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    background: white;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.stat-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.why-text {
    margin-bottom: 2rem;
}

.why-text-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.why-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.callout {
    background: var(--primary-lightest);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.video-and-description {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.why-video {
    width: 100%;
}

.impact-description {
    width: 100%;
}

.impact-description-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.impact-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .why-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   Impact Calculator
   ============================================ */
.impact-calculator-section {
    background: var(--bg-light);
}

.calculator-content {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.calculator-program-selector {
    margin-bottom: 2rem;
}

.calculator-program-selector label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-selector-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.program-selector-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--primary-lightest);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.program-selector-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.program-selector-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cost-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.program-selector-btn.active .cost-badge {
    background: rgba(255, 255, 255, 0.3);
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-lightest);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(113, 148, 48, 0.1);
}

.currency {
    font-weight: 600;
    color: var(--text-medium);
    margin-right: 0.5rem;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.quick-amounts {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-amount-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--primary-lightest);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.quick-amount-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-lightest);
}

.quick-amount-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calculator-result {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--primary-lightest);
    border-radius: 15px;
}

.result-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
}

.result-text {
    flex: 1;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.result-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.calculator-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.calculator-note small {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Impact Details */
.impact-details {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-lightest);
}

.impact-details-header {
    text-align: center;
    margin-bottom: 2rem;
}

.impact-details-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.impact-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.impact-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.impact-card {
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    border: 2px solid var(--primary-lightest);
    transition: var(--transition);
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.impact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.impact-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.impact-card-highlight {
    background: linear-gradient(135deg, var(--primary-lightest), rgba(113, 148, 48, 0.05));
    border-color: var(--primary-color);
    border-width: 3px;
}

.impact-card-highlight h4 {
    color: var(--primary-dark);
}

/* Program-specific impacts */
.impact-program-specific {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.impact-program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.impact-program-card {
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    border: 2px solid var(--primary-lightest);
}

.impact-program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.impact-program-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.impact-program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-program-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--primary-lightest);
}

.impact-program-card li:last-child {
    border-bottom: none;
}

.impact-program-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.impact-program-card li strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Success Story */
.impact-success-story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.success-story-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.success-story-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.success-story-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.success-story-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.calculator-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   Programmes Section
   ============================================ */
.programmes-section {
    background: white;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.programme-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.programme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.programme-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.programme-card:hover::after {
    transform: scaleX(1);
}

.programme-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px 16px 0 0;
    background-color: var(--bg-light);
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1.02);
}

.programme-image-driving img {
    object-position: center top;
}

.programme-card:hover .programme-image img {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.05);
}

.programme-card > *:not(.programme-image) {
    padding: 0 2rem;
}

.programme-card > *:last-child {
    padding-bottom: 2rem;
}

.programme-icon {
    margin: 1.5rem auto 0.75rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 0.7;
}

.programme-icon svg {
    width: 100%;
    height: 100%;
}

.programme-partner-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: rgba(113, 148, 48, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(113, 148, 48, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.programme-partner-badge.partner-stem {
    background: rgba(255, 115, 85, 0.1);
    color: #d46a4a;
    border-color: rgba(255, 115, 85, 0.2);
}

.programme-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.programme-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.programme-duration {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.programme-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.programme-outcomes {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.programme-outcomes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 300;
}

.programme-outcomes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.programme-note {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.programme-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--bg-light);
}

.impact-stats {
    margin-bottom: 4rem;
}

.impact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-intro-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(113, 148, 48, 0.15);
    border-color: var(--primary-color);
}

.impact-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.impact-stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.impact-stat-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.impact-outcomes {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.impact-outcomes-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.outcome-item {
    text-align: center;
    padding: 1.5rem;
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.outcome-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.outcome-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.testimonials-header {
    margin: 4rem 0 2rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.testimonial-video {
    padding: 0;
    overflow: hidden;
}

.testimonial-video .video-container {
    margin: 0;
    border-radius: 15px 15px 0 0;
}

.testimonial-video .testimonial-quote {
    margin-top: 1rem;
}

.testimonials-detailed {
    margin-top: 4rem;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.testimonials-category {
    margin-bottom: 3rem;
}

.testimonials-category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.testimonial-detailed {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-detailed .testimonial-program-badge {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.testimonial-program-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(113, 148, 48, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(113, 148, 48, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    max-width: 100%;
}

.testimonial-program-badge-tech {
    background: rgba(255, 115, 85, 0.1);
    color: #d46a4a;
    border-color: rgba(255, 115, 85, 0.2);
}

.testimonial-detailed .testimonial-text {
    text-align: left;
    font-style: normal;
    margin-bottom: 1rem;
}

.testimonial-detailed .testimonial-author {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Budget Section
   ============================================ */
.budget-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.budget-content {
    max-width: 1000px;
    margin: 0 auto;
}

.budget-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.budget-total {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid var(--primary-lightest);
    transition: var(--transition);
    position: relative;
}

.budget-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.budget-total:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.budget-total:hover::before {
    opacity: 1;
}

.budget-total-stem {
    border-color: rgba(255, 115, 85, 0.2);
}

.budget-total-stem::before {
    background: linear-gradient(90deg, #d46a4a, #ff7355);
}

.budget-total-stem:hover {
    border-color: rgba(255, 115, 85, 0.4);
}

.budget-total-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.budget-total-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.budget-total-stem .budget-total-amount {
    color: #d46a4a;
}

.budget-total-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.budget-total-cost {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.budget-partner-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.budget-partner-badge-stem {
    background: #d46a4a;
    color: white;
}

.budget-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.budget-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: none;
}

.budget-item:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.budget-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.budget-item-header h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: left !important;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.budget-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-align: right !important;
    flex: 0 0 auto;
    min-width: fit-content;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 0.5rem;
}

.budget-item p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.budget-breakdown-stem {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.budget-breakdown-stem-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.budget-breakdown-stem h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.budget-note {
    margin-top: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.budget-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.budget-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Donation Section
   ============================================ */
.donation-section {
    padding: 5rem 0;
    background: white;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.donation-card {
    background: white;
    border: 2px solid var(--primary-lightest);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.donation-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-lightest), white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.donation-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.donation-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.donation-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.donation-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Bank Details Copy Button */
.bank-details-copy {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bank-info-text {
    flex: 1;
}

.copy-bank-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-bank-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(113, 148, 48, 0.3);
}

.copy-bank-btn:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1.1rem;
}

.copy-text {
    font-family: 'Inter', sans-serif;
}

.copy-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--primary-lightest);
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.bank-info {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.bank-info h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.bank-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bank-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bank-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.bank-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.girocode {
    width: 180px;
    height: 180px;
    margin-top: 1rem;
    border-radius: 10px;
}

.tax-info {
    background: var(--primary-lightest);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.tax-info p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .bank-details-copy {
        flex-direction: column;
    }
    
    .copy-bank-btn {
        width: 100%;
        justify-content: center;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-intro-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.partners-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.partners-left,
.partners-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.partners-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.partner-type {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.partner-type:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(113, 148, 48, 0.15);
    border-left-width: 6px;
}

.partner-type h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.partner-type p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.partners-benefits {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid var(--primary-color);
}

.partners-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.package-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-lightest);
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(113, 148, 48, 0.15);
    transform: translateY(-2px);
}

.package-bronze {
    border-top: 4px solid #cd7f32;
}

.package-silver {
    border-top: 4px solid #c0c0c0;
}

.package-gold {
    border-top: 4px solid #ffd700;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-lightest);
}

.package-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.package-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.partners-tax-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-lightest);
}

.partners-tax-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.partners-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.partners-section .btn-secondary {
    background: var(--primary-color);
    color: white !important;
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.partners-section .btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 148, 48, 0.3);
}

@media (max-width: 968px) {
    .partners-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-video {
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.back-to-main-link {
    display: inline-block;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid var(--primary-lightest);
}

.back-to-main-link:hover {
    background: var(--primary-lightest);
    color: var(--primary-color);
    transform: translateX(-5px);
    border-color: var(--primary-color);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: white;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px solid var(--primary-lightest);
}

.contact-detail-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-detail-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-detail-item p {
    color: var(--text-medium);
    margin: 0.5rem 0 0 0;
    line-height: 1.8;
}

.contact-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--primary-lightest);
    border-radius: 15px;
}

.contact-trust-item {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-certificate {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--primary-lightest);
    border-radius: 16px;
    border: 2px solid var(--primary-light);
    text-align: center;
}

.contact-certificate h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-certificate p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-cta {
    margin-top: 2rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide gallery items with broken images */
.gallery-item:has(img[src=""]) {
    display: none;
}

/* Fallback for browsers that don't support :has() */
.gallery-item img[src=""] {
    display: none;
}

.gallery-item:not(:has(img[src])) {
    display: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-legal {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ============================================
   Lightbox (from main site)
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    /* Verhindere horizontales Scrollen */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    /* Mobile Breadcrumb sichtbar machen */
    .mobile-breadcrumb {
        display: block !important;
        background: var(--primary-lightest);
        padding: 0.75rem 1rem;
        margin: -2rem -2rem 1rem -2rem;
        border-bottom: 2px solid var(--primary-color);
    }
    
    .mobile-breadcrumb a {
        font-weight: 600;
        color: var(--primary-color);
        font-size: 1rem;
    }
    
    .nav-menu.mobile-open .btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
    
    /* Sticky Donation Bar für mobile Geräte */
    .mobile-sticky-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.75rem 1.5rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.05);
        animation: slideUp 0.5s ease-out;
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom)); /* Für iPhone Home Bar */
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    @keyframes heartbeat {
        0% { transform: scale(1); }
        5% { transform: scale(1.05); }
        10% { transform: scale(1); }
        15% { transform: scale(1.05); }
        20% { transform: scale(1); }
        100% { transform: scale(1); }
    }
    
    @keyframes shimmer {
        0% { background-position: -100px; }
        40%, 100% { background-position: 200px; }
    }
    
    .sticky-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    
    .sticky-label {
        font-weight: 800;
        color: var(--text-dark);
        font-size: 0.9rem;
    }
    
    .sticky-sub {
        font-size: 0.75rem;
        color: var(--text-medium);
    }
    
    .sticky-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
        box-shadow: 0 4px 10px rgba(113, 148, 48, 0.3);
        animation: heartbeat 5s infinite;
        position: relative;
        overflow: hidden;
    }
    
    /* Shimmer Effekt */
    .sticky-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        background-size: 200px 100%;
        background-repeat: no-repeat;
        animation: shimmer 3s infinite linear;
    }
    
    /* Floating Action Button - deaktiviert zugunsten der Sticky Bar */
    .mobile-fab {
        display: none;
    }
    
    /* Section-Divider auf mobil verstecken */
    .section-divider {
        display: none;
    }
    
    /* Reduziere Container-Padding auf mobil für mehr Platz */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Section-Title mehr Abstand zum Rand, damit nicht abgeschnitten wird */
    .section-title {
        padding: 0 0.5rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: manual !important; /* Verhindere automatische Silbentrennung */
        word-break: keep-all; /* Verhindere unschöne Umbrüche */
    }
    
    .section-header {
        padding: 0 0.5rem !important;
    }
    
    /* Erste Section nach Hero mehr Padding-top, damit nicht von Navbar verdeckt */
    .hero + .section {
        padding-top: 5rem !important;
        margin-top: 0 !important;
    }
    
    /* Alle Sections nach Hero haben scroll-margin-top für bessere Navigation */
    .section {
        scroll-margin-top: 100px;
    }
    
    /* Hero-Content mehr Padding-top auf mobil */
    .hero-content {
        padding-top: 140px !important;
        padding-bottom: 80px !important;
    }
    
    /* Timeline max-width sicherstellen */
    .timeline {
        max-width: 100% !important;
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
        max-width: 100%;
    }
    
    /* Video-Container sicherstellen, dass sie sichtbar sind */
    .testimonial-video {
        display: block !important;
        visibility: visible !important;
    }
    
    .testimonial-video .video-container {
        display: block !important;
        visibility: visible !important;
        padding-bottom: 56.25% !important;
        height: auto !important;
        min-height: 200px;
        background: #000;
        position: relative;
    }
    
    .testimonial-video iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    
    .hero-breadcrumb {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-link {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .back-to-main-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section {
        padding: 3rem 0;
        background: white !important;
    }
    
    /* Abwechselnde Hintergründe für mobile Geräte */
    .section:nth-child(even) {
        background: var(--bg-light) !important;
    }
    
    /* Stelle sicher, dass body immer einen Hintergrund hat */
    body {
        background-color: white;
    }
    
    /* Verhindere weiße Flächen bei fehlenden Bildern */
    .programme-image,
    .testimonial-image,
    .gallery-item {
        background-color: var(--bg-light) !important;
        min-height: 200px;
    }
    
    /* Stelle sicher, dass Cards immer einen Hintergrund haben */
    .programme-card,
    .testimonial-card,
    .stat-card,
    .impact-stat-card {
        background-color: white !important;
    }
    
    /* Stelle sicher, dass Container-Elemente einen Hintergrund haben */
    .container {
        background-color: transparent;
    }
    
    /* Verhindere weiße Flächen zwischen Sektionen */
    body > * {
        background-color: white;
    }
    
    /* Hero-Section Hintergrund sicherstellen */
    .hero {
        background-color: var(--primary-color) !important;
        min-height: 400px;
    }
    
    /* Video-Container Hintergrund */
    .video-container {
        background-color: var(--bg-light);
    }
    
    /* Calculator-Box Hintergrund */
    .calculator-box {
        background-color: white !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .program-selector-buttons {
        flex-direction: column;
    }
    
    .program-selector-btn {
        min-width: 100%;
    }
    
    .calculator-result {
        flex-direction: column;
        text-align: center;
    }
    
    .result-icon {
        margin: 0 auto;
    }
    
    .impact-details {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .impact-details-header h3 {
        font-size: 1.5rem;
    }
    
    .impact-intro {
        font-size: 1rem;
    }
    
    .impact-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .impact-card {
        padding: 1.5rem;
    }
    
    .impact-card-icon {
        font-size: 2.5rem;
    }
    
    .impact-card h4 {
        font-size: 1.125rem;
    }
    
    .impact-card p {
        font-size: 0.875rem;
    }
    
    .impact-program-specific {
        padding: 1.5rem;
    }
    
    .impact-program-title {
        font-size: 1.25rem;
    }
    
    .impact-program-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-program-card {
        padding: 1.5rem;
    }
    
    .impact-program-icon {
        font-size: 2rem;
    }
    
    .impact-program-card h5 {
        font-size: 1.125rem;
    }
    
    .impact-program-card li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
        min-height: auto;
        height: auto;
    }
    
    /* Verhindere zu lange grüne Elemente */
    .impact-program-card ul {
        display: flex;
        flex-direction: column;
    }
    
    .impact-program-card li::before {
        position: absolute;
        left: 0;
        top: 0.5rem;
    }
    
    /* Calculator-Box weniger Padding auf mobil und zentriert */
    .calculator-box {
        padding: 1.5rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        border-radius: 15px;
    }
    
    .calculator-content {
        padding: 0 !important;
    }
    
    .impact-program-specific {
        padding: 1.5rem !important;
        margin: 1.5rem -1rem !important;
        max-width: 100% !important;
        width: calc(100% + 2rem) !important;
        box-sizing: border-box;
    }
    
    /* Impact-program-title zentrieren */
    .impact-program-title {
        text-align: center !important;
        padding: 0 0.5rem;
    }
    
    .impact-success-story {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .success-story-icon {
        font-size: 2.5rem;
        align-self: center;
    }
    
    .success-story-content h4 {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .success-story-content p {
        font-size: 0.9375rem;
        text-align: center;
    }
    
    .programmes-section {
        display: block !important;
        visibility: visible !important;
        padding: 3rem 0 !important;
        background: white !important;
    }
    
    .programmes-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .programme-card {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonial-detailed Layout auf mobil anpassen */
    .testimonial-detailed {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .testimonial-program-badge {
        width: fit-content !important;
        max-width: 100% !important;
    }
    
    /* Budget-amount Alignment auf mobil */
    .budget-item-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .budget-amount {
        text-align: left !important;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Bankverbindung breiter auf mobil - weniger Padding */
    .bank-card {
        max-width: 100%;
        width: 100%;
        padding: 1.25rem !important;
    }
    
    .bank-info {
        padding: 1.25rem 0.75rem !important;
        margin: 2rem -1rem;
        border-radius: 15px;
    }
    
    /* IBAN auf eine Zeile - kleinere Schrift */
    .bank-info-text p {
        word-break: keep-all;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .bank-info-text p:first-of-type {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .stat-subtext {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-stat-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .impact-stat-number {
        font-size: 2.5rem;
    }
    
    .impact-stat-label {
        font-size: 1.125rem;
    }
    
    .impact-stat-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-cta {
        flex-direction: column;
    }
    
    .partners-cta .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .why-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem 0.875rem;
        min-height: 90px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .stat-subtext {
        font-size: 0.6875rem;
    }
    
    .impact-stat-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    
    .impact-stat-number {
        font-size: 2rem;
    }
    
    .impact-stat-label {
        font-size: 1rem;
    }
    
    .impact-stat-description {
        font-size: 0.875rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for lists/grids */
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }
.reveal-delay-400 { transition-delay: 0.4s; }

/* Disable animations on very slow devices or if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-zoom {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Pulse Animation für Buttons */
.pulse-animation {
    animation: heartbeat 3s infinite;
}


/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* Disable fixed background on mobile for performance and better UX */
@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll !important;
        background-position: center center !important;
    }
}

/* Content Parallax Effect (JS controlled) */
.parallax-content {
    position: relative;
    will-change: transform, opacity;
}


/* ============================================
   Modern UI Enhancements
   ============================================ */

/* Gradient Text for Emphasis */
.text-gradient,
.stat-number,
.impact-number,
.budget-amount {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color); /* Fallback */
}

/* Glassmorphism for Cards */
.glass-effect,
.stat-card,
.programme-card,
.testimonial-card,
.budget-item,
.calculator-box,
.partner-type,
.countdown-card,
.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Enhanced Hover Effects for Cards */
.stat-card:hover,
.programme-card:hover,
.testimonial-card:hover,
.budget-item:hover,
.partner-type:hover,
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
    border-color: var(--primary-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-lightest);
    color: var(--primary-dark);
}

