/* About Page Styles - Universal Spacing Reduction Applied */

/* Hero Section - Reduced Padding */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    color: white;
    padding: 80px 0 50px; /* Reduced from 120px 0 80px - 33% reduction */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M0,100 C300,150 700,50 1000,100 L1000,200 L0,200 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom center;
    background-size: cover;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 300;
}

.hero-image {
    margin-top: 2rem;
}

.team-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 35% 20%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Us Section - Universal Spacing Reduction Applied */
.about-us-section {
    padding: 30px 0; /* Reduced from 100px - 70% reduction for significant compaction */
    background: var(--light-gray);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Reduced from 80px - 62% reduction to bring Bex and Oli closer */
}

.profile-section {
    background: white;
    border-radius: 20px;
    padding: 40px; /* Reduced from 60px - 33% reduction */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.profile-content.reverse {
    grid-template-columns: 300px 1fr;
}

.profile-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.profile-text h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.profile-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

.highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    object-position: 70% 20%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

/* Profile Quote */
.profile-quote {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 119, 190, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.profile-quote p {
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Profile Achievements */
.profile-achievements {
    margin-top: 2rem;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.profile-achievements h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.profile-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-achievements li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.profile-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Timeline Section - Universal Spacing Reduction Applied */
.timeline-section {
    padding: 30px 0; /* Reduced from 100px - 70% reduction */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main timeline line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

/* Timeline item positioning */
.timeline-item.left {
    padding-right: 55%;
}

.timeline-item.right {
    padding-left: 55%;
    text-align: right;
}

.timeline-item.center {
    padding: 0 10%;
    text-align: center;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Timeline arrows */
.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: rgba(255, 255, 255, 0.1);
}

/* Timeline dots */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 30px;
    z-index: 3;
}

.timeline-item.left::before {
    right: calc(45% - 10px);
}

.timeline-item.right::before {
    left: calc(45% - 10px);
}

.timeline-item.center::before {
    left: 50%;
    transform: translateX(-50%);
}

/* Color coding for timeline items */
.oli-item::before {
    background: var(--secondary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.bex-item::before {
    background: var(--accent-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-color);
}

.shared-item::before {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: 3px solid white;
    box-shadow: 0 0 0 3px #fff;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Convergence point */
.timeline-convergence {
    position: relative;
    margin: 80px 0;
    text-align: center;
    z-index: 3;
}

.convergence-content {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.convergence-content::before {
    content: '❤️';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stats Section - Universal Spacing Reduction Applied */
.stats-section {
    padding: 30px 0; /* Reduced from 100px - 70% reduction */
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; /* Reduced from 40px - 25% reduction */
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px; /* Reduced vertical padding from 40px - 25% reduction */
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Mission Section - Universal Spacing Reduction Applied */
.mission-section {
    padding: 30px 0; /* Reduced from 40px - 25% reduction */
    background: white;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Everything centered */
    padding: 0 20px; /* Side padding for mobile */
}

/* Mission Text Group - Reduced Spacing */
.mission-text-group {
    margin-bottom: 2rem; /* Reduced from 3rem - 33% reduction */
}

/* Centered Mission Title */
.mission-main-title {
    font-size: 2rem; /* Maintained for readability */
    color: var(--primary-color);
    margin-bottom: 0.75rem; /* Reduced from 1.25rem - 40% reduction */
    font-weight: 700;
    text-align: center;
}

/* Centered Mission Text Container */
.mission-intro-centered {
    max-width: 75%; /* Maintained for readability */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Individual Mission Paragraphs - Tighter Spacing */
.mission-intro-centered p {
    font-size: 1.05rem; /* Maintained for readability */
    line-height: 1.55; /* Reduced from 1.6 for compactness */
    color: var(--text-color);
    margin-bottom: 1rem; /* Reduced from 1.25rem - 20% reduction */
    text-align: center;
}

/* Remove margin from last paragraph for clean spacing */
.mission-intro-centered p:last-child {
    margin-bottom: 0;
}

/* Impact Section Group - Maintained tight control */
.impact-section-group {
    margin-top: 0; /* No top margin - controlled by text group */
}

/* Impact Section Title - Tighter Spacing */
.impact-section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem; /* Reduced from 1.5rem - 33% reduction */
    font-weight: 600;
    text-align: center;
}

/* Compact Mission Cards - Enhanced for Wider/Shorter Layout */
.mission-cards-compact {
    display: flex;
    justify-content: center;
    gap: 1.25rem; /* Reduced from 1.5rem for tighter spacing */
    flex-wrap: wrap;
    max-width: 1200px; /* Wider container for better horizontal expansion */
    margin: 0 auto;
}

.mission-card-compact {
    background: white;
    padding: 1rem 1.5rem; /* Reduced vertical, maintained horizontal - 20% vertical reduction */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px; /* Wider minimum width */
    max-width: 380px; /* Wider maximum width */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card-compact:hover {
    transform: translateY(-2px); /* Reduced hover lift for compactness */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-card-compact .mission-icon {
    margin-bottom: 0.5rem; /* Reduced from 0.75rem - 33% reduction */
    font-size: 2rem; /* Reduced from 2.2rem for compactness */
    color: var(--accent-color);
}

.mission-card-compact h4 {
    font-size: 1.1rem; /* Reduced from 1.15rem for compactness */
    color: var(--primary-color);
    margin-bottom: 0.5rem; /* Reduced from 0.75rem - 33% reduction */
    font-weight: 600;
    line-height: 1.25; /* Tighter line height */
}

.mission-card-compact p {
    font-size: 0.85rem; /* Reduced from 0.9rem for compactness */
    line-height: 1.35; /* Tight line height for vertical compression */
    color: var(--text-color);
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.mission-item {
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Mission Details */
.mission-details {
    margin-top: 1.5rem;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
}

.mission-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.mission-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Mission Impact */
.mission-impact {
    margin-top: 4rem;
    text-align: center;
}

.mission-impact h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.impact-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-description {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Support & Contact Section - Universal Spacing Reduction Applied */
.support-contact-section {
    padding: 40px 0; /* Reduced from 100px - 60% reduction, but kept higher to maintain section separation */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.support-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Reduced from 80px - 37% reduction */
    max-width: 1200px;
    margin: 0 auto;
}

.support-section,
.contact-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-section p,
.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.support-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.support-list li::before {
    content: '🌊';
    position: absolute;
    left: 0;
    top: 12px;
}

/* Support Breakdown */
.support-breakdown {
    margin: 2rem 0;
}

.support-breakdown h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.support-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.support-details h5 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.support-details p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Support Impact */
.support-impact {
    margin: 2rem 0;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.support-impact p {
    margin: 0;
    font-style: italic;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Support Alternatives */
.support-alternatives {
    margin-top: 2rem;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.support-alternatives p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.support-alternatives ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-alternatives li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.support-alternatives li::before {
    content: '💙';
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .team-photo {
        width: 320px;
        height: 320px;
    }
    
    .profile-content,
    .profile-content.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .profile-section {
        padding: 40px 30px;
    }
    
    .profile-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 70px;
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 20px;
    }
    
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -15px;
        border-right-color: rgba(255, 255, 255, 0.1);
        border-left-color: transparent;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-section,
    .contact-section {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-text-group {
        margin-bottom: 1.5rem; /* Further reduced for mobile - 25% reduction */
    }
    
    .mission-main-title {
        font-size: 1.7rem; /* Maintained readability */
        margin-bottom: 0.5rem; /* Further reduced mobile spacing - 50% reduction */
    }
    
    .mission-intro-centered {
        max-width: 95%; /* Wider on mobile for readability */
    }
    
    .mission-intro-centered p {
        font-size: 1rem; /* Maintained for readability */
        line-height: 1.5; /* Maintained readability */
        margin-bottom: 0.75rem; /* Reduced from 1rem - 25% reduction */
    }
    
    .impact-section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem; /* Further reduced mobile spacing - 25% reduction */
    }
    
    .mission-cards-compact {
        gap: 0.75rem; /* Further reduced mobile gap - 25% reduction */
    }
    
    .mission-card-compact {
        min-width: 300px; /* Maintained mobile width */
        max-width: 100%; /* Full width available */
        padding: 0.75rem 1.25rem; /* Further reduced vertical padding - 25% reduction */
    }
    
    .mission-card-compact h4 {
        font-size: 1.05rem; /* Slightly reduced for mobile */
        margin-bottom: 0.375rem; /* Further reduced - 25% reduction */
    }
    
    .mission-card-compact p {
        font-size: 0.85rem; /* Maintained readability */
        line-height: 1.35; /* Maintained readability */
    }
    
    .mission-card-compact .mission-icon {
        margin-bottom: 0.375rem; /* Further reduced mobile icon spacing - 25% reduction */
        font-size: 1.75rem; /* Smaller mobile icon for compactness */
    }
}

/* Tablet breakpoint for mission section smooth transition */
@media (max-width: 1024px) and (min-width: 769px) {
    .mission-text-group {
        margin-bottom: 2.5rem;
    }
    
    .mission-main-title {
        font-size: 1.85rem; /* Intermediate size for tablets */
        margin-bottom: 1.125rem; /* Proportional spacing */
    }
    
    .mission-intro-centered {
        max-width: 85%; /* Balanced width for tablets */
    }
    
    .mission-intro-centered p {
        font-size: 1.025rem; /* Intermediate text size */
        margin-bottom: 1.125rem; /* Proportional paragraph spacing */
    }
    
    .impact-section-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .mission-cards-compact {
        gap: 1.25rem;
    }
    
    .mission-card-compact {
        min-width: 280px;
        max-width: 320px;
        padding: 1.125rem 1.375rem; /* Proportional padding */
    }
}

/* Stack cards on small tablets and ensure proper spacing */
@media (max-width: 600px) {
    .mission-cards-compact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mission-card-compact {
        width: 100%;
        max-width: 350px; /* Wider single column */
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .profile-section {
        padding: 30px 20px;
    }
    
    .support-section,
    .contact-section {
        padding: 30px 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .support-percentage {
        font-size: 2rem;
    }
}

/* Enhanced Quote Styling */
.profile-quote-enhanced {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(0, 119, 190, 0.1));
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-mark-open,
.quote-mark-close {
    font-size: 3rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.8;
}

.quote-mark-open {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}

.quote-mark-close {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin: 1rem 2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.quote-attribution {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Achievement Highlights */
.achievement-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.achievement-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
}

.achievement-text {
    display: flex;
    flex-direction: column;
}

.achievement-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.achievement-text span {
    color: #666;
    font-size: 0.9rem;
}

/* Journey Faces Section */
.journey-faces-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05), rgba(64, 224, 208, 0.05));
}

.journey-faces-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.journey-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.journey-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.journey-caption {
    padding: 1.5rem;
}

.journey-caption h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.journey-caption p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced Stats with Hover Effects */
.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item:hover .stat-detail {
    opacity: 1;
    transform: translateY(0);
}

.stat-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.fun-fact {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-extra {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Testimonials Section - Universal Spacing Reduction Applied */
.testimonials-section {
    padding: 30px 0; /* Reduced from 4rem (64px) - 53% reduction */
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(0, 119, 190, 0.05));
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.75rem; /* Reduced from 1rem - 25% reduction */
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem; /* Reduced from 2rem - 25% reduction */
    margin-top: 2rem; /* Reduced from 3rem - 33% reduction */
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 2rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Timeline Improvements */
@media (max-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline::before {
        left: 1rem;
        width: 3px;
    }
    
    .timeline-item.left,
    .timeline-item.right,
    .timeline-item.center {
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-content::before {
        left: -2rem;
        border: 8px solid;
        border-color: transparent white transparent transparent;
    }
    
    /* Color-coded timeline for mobile */
    .timeline-item.oli-item .timeline-content {
        border-left: 4px solid var(--primary-color);
    }
    
    .timeline-item.bex-item .timeline-content {
        border-left: 4px solid var(--accent-color);
    }
    
    .timeline-item.shared-item .timeline-content {
        border-left: 4px solid var(--secondary-color);
    }
    
    /* Mobile legend */
    .timeline-section::after {
        content: "🔵 Oli's Journey • 🔴 Bex's Journey • 🟢 Shared Adventure";
        display: block;
        text-align: center;
        margin-top: 2rem;
        font-size: 0.9rem;
        color: #666;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .journey-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-highlights {
        margin-top: 1.5rem;
    }
    
    .achievement-item {
        padding: 0.75rem;
    }
    
    .achievement-item:hover {
        transform: translateX(5px);
    }
    
    .quote-text {
        font-size: 1.1rem;
        margin: 0.5rem 1.5rem;
    }
    
    .quote-mark-open,
    .quote-mark-close {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .journey-faces-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Timeline Visual Enhancements */
/* Shared item dot positioning */
.timeline-item.shared-item.center::before {
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    z-index: 3;
}

/* Timeline line extension and ending */
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -80px;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline continuation arrow */
.timeline-section::after {
    content: '↓';
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    z-index: 2;
}

/* Ensure timeline section has relative positioning for absolute children */
.timeline-section .timeline {
    position: relative;
}

/* Mobile adjustments for timeline ending */
@media (max-width: 768px) {
    .timeline::after {
        left: 1rem;
        transform: none;
        bottom: -60px;
        height: 40px;
    }
    
    .timeline-section::after {
        left: 1rem;
        transform: none;
        bottom: -30px;
        font-size: 1.2rem;
    }
}

/* Mission Section Layout Adjustments */
/* Our Impact So Far - Positioned under title */
.mission-impact-header {
    text-align: center;
    margin: 3rem 0 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-impact-header h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Mission Items Horizontal Layout */
.mission-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-grid-horizontal .mission-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-grid-horizontal .mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive Mission Grid */
@media (min-width: 1400px) {
    .mission-grid-horizontal {
        max-width: 1600px; /* Even wider on large screens */
        gap: 2.5rem; /* More breathing room */
    }
    
    .mission-grid-horizontal .mission-item {
        padding: 2.5rem; /* Extra generous padding */
    }
}

@media (max-width: 1200px) {
    .mission-grid-horizontal {
        max-width: 1000px;
        gap: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .mission-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
    }
    
    .mission-grid-horizontal .mission-item:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mission-grid-horizontal .mission-item {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .mission-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .mission-grid-horizontal .mission-item:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .mission-grid-horizontal .mission-item {
        padding: 1.5rem;
    }
}

/* AGGRESSIVE VERTICAL SPACING COMPACTION - 25% Reduction */

/* 1. General Section Spacing - 25% Reduction */
.about-hero {
    padding: 75px 0 45px; /* Further reduced from 90px 0 60px */
}

.about-us-section {
    padding: 45px 0; /* Reduced from 60px 0 */
}

.journey-faces-section {
    padding: 37px 0; /* Reduced from 50px 0 */
}

.timeline-section {
    padding: 37px 0; /* Reduced from 50px 0 */
}

.stats-section {
    padding: 37px 0; /* Reduced from 50px 0 */
}

.testimonials-section {
    padding: 37px 0; /* Reduced from 50px 0 */
}

.mission-section {
    padding: 37px 0; /* Reduced from 50px 0 */
}

.support-contact-section {
    padding: 30px 0; /* Reduced by 25% from 40px */
}

/* 2. Oli & Bex Bio Sections - Aggressive Compaction */
.about-hero h1 {
    margin-bottom: 0.75rem; /* Further reduced from 1rem */
}

.about-hero p {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    line-height: 1.4; /* Tighter from 1.5 */
}

.hero-image {
    margin-top: 1.5rem; /* Reduced from 2rem */
}

.profile-section {
    margin-bottom: 2rem; /* Reduced space between profiles */
}

.profile-content {
    gap: 1rem; /* Further reduced from 1.5rem */
}

.profile-text h2 {
    margin-bottom: 0.5rem; /* Tighter title spacing */
}

.profile-text h3 {
    margin-bottom: 0.75rem; /* Reduced subtitle spacing */
}

.profile-text p {
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    line-height: 1.4; /* Tighter line spacing */
}

.profile-highlights {
    margin: 1rem 0; /* Reduced from 1.5rem 0 */
}

.profile-achievements {
    margin-top: 1rem; /* Reduced from 1.5rem */
}

.profile-achievements h4 {
    margin-bottom: 0.5rem; /* Tighter spacing */
}

/* 3. Timeline Section - Maximum Compaction */
.timeline-item {
    margin-bottom: 25px; /* Aggressive reduction from 40px */
}

.timeline-content {
    padding: 1.5rem; /* Reduced internal padding */
    margin-left: 2rem; /* Closer to timeline line */
    margin-right: 2rem;
}

.timeline-item.left .timeline-content {
    margin-left: 1.5rem; /* Closer to center line */
}

.timeline-item.right .timeline-content {
    margin-right: 1.5rem; /* Closer to center line */
}

.timeline-convergence {
    margin: 40px 0; /* Reduced from 60px 0 */
}

.convergence-content {
    padding: 20px; /* Reduced from 30px */
}

.timeline-year {
    margin-bottom: 0.25rem; /* Tighter year spacing */
}

.timeline-content h3 {
    margin-bottom: 0.75rem; /* Reduced from 1rem */
}

.timeline-content p {
    line-height: 1.4; /* Tighter line spacing */
}

/* 4. Stats and Mission Section - Compact Integration */
.mission-impact-header {
    margin: 0.5rem 0 1.5rem 0; /* Tighter spacing - closer to mission title */
    padding: 0.75rem; /* More compact padding */
    max-width: 1400px; /* Wider container for better card spacing */
    margin-left: auto;
    margin-right: auto;
}

.mission-impact-header h3 {
    margin-bottom: 0.75rem; /* Tighter bottom spacing */
    font-size: 1.75rem; /* Slightly smaller */
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns for desktop */
    gap: 1.5rem; /* Better spacing for wider cards */
    max-width: 1200px; /* Wider grid container */
    margin-left: auto;
    margin-right: auto;
}

.impact-item {
    padding: 1.5rem 1rem; /* More horizontal padding for wider feel */
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 0; /* Allow flexible shrinking */
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Mission Cards Header - Positioned above the three horizontal mission cards */
.mission-cards-header {
    text-align: center;
    margin-top: 3rem; /* Clear separation from impact stats above */
    margin-bottom: 1rem; /* Minimal gap to mission cards below */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.mission-cards-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0; /* Remove default margins for precise spacing control */
}

.mission-grid-horizontal {
    margin-top: 1rem; /* More compact - reduced from 1.5rem */
    margin-bottom: 2rem; /* Reduced from default to tighten section spacing */
    gap: 2rem; /* Increased for better spacing */
    max-width: 1400px; /* Wider container */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.mission-grid-horizontal .mission-item {
    padding: 1.5rem; /* More compact padding - reduced from 2rem */
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-grid-horizontal .mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-item .mission-icon {
    margin-bottom: 0.75rem; /* Reduced icon spacing */
    width: 50px; /* Slightly smaller icons */
    height: 50px;
}

.mission-item h3 {
    margin-bottom: 0.75rem; /* Reduced title spacing */
    font-size: 1.25rem; /* Slightly smaller */
}

.mission-item p {
    margin-bottom: 0.75rem; /* Reduced paragraph spacing */
    line-height: 1.4; /* Tighter line spacing */
    font-size: 0.95rem; /* Slightly smaller text */
}

.mission-details {
    margin-top: 0.75rem; /* Reduced from 1rem */
}

.mission-details ul {
    margin: 0;
    padding-left: 1rem; /* Reduced indentation */
}

.mission-details li {
    margin-bottom: 0.25rem; /* Tighter list spacing */
    font-size: 0.9rem; /* Smaller list text */
}

/* 5. Support/Contact Section - 25% Reduction */
.support-contact-grid {
    gap: 1.5rem; /* Reduced from 2rem */
    padding: 0 1rem; /* Tighter side padding */
}

.support-section,
.contact-section {
    padding: 1.5rem; /* Reduced internal padding */
}

.support-section h2,
.contact-section h2 {
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    font-size: 1.75rem; /* Slightly smaller */
}

.support-section p,
.contact-section p {
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    line-height: 1.4; /* Tighter line spacing */
}

.support-options {
    margin: 1rem 0; /* Reduced spacing */
}

.support-item {
    margin-bottom: 0.75rem; /* Tighter option spacing */
}

.contact-form {
    margin-top: 1rem; /* Reduced from default */
}

.form-group {
    margin-bottom: 1rem; /* Reduced form spacing */
}

.form-group label {
    margin-bottom: 0.25rem; /* Tighter label spacing */
}

.form-group input,
.form-group textarea {
    padding: 0.75rem; /* Reduced input padding */
}

.submit-btn {
    margin-top: 1rem; /* Reduced button spacing */
}

/* 6. Additional Aggressive Reductions */
.journey-faces-section h2,
.testimonials-section h2 {
    margin-bottom: 0.5rem; /* Further reduced */
    font-size: 2rem; /* Slightly smaller */
}

.section-subtitle {
    margin: 0 auto 1.5rem; /* Reduced from 2rem */
    font-size: 1rem; /* Slightly smaller */
}

.journey-slider,
.testimonials-grid {
    margin-top: 1.5rem; /* Reduced from 2rem */
    gap: 1rem; /* Tighter grid gaps */
}

.journey-item,
.testimonial-item {
    margin-bottom: 0;
}

.journey-caption,
.testimonial-content {
    padding: 1rem; /* Reduced from 1.5rem */
}

.achievement-highlights {
    margin-top: 1rem; /* Reduced from 1.5rem */
    gap: 0.5rem; /* Tighter achievement spacing */
}

.achievement-item {
    padding: 0.5rem; /* Further reduced */
}

.profile-quote-enhanced {
    margin: 1rem 0; /* Reduced from 1.5rem 0 */
    padding: 1rem; /* Reduced from 1.5rem */
}

.quote-text {
    margin: 0.5rem 1rem; /* Reduced margins */
    font-size: 1.1rem; /* Slightly smaller */
}

/* 7. Mobile Universal Spacing Reduction - Enhanced */
@media (max-width: 768px) {
    .about-hero {
        padding: 30px 0 20px; /* Further reduced mobile hero - 33% reduction */
    }
    
    .about-us-section,
    .journey-faces-section,
    .timeline-section,
    .stats-section,
    .testimonials-section,
    .mission-section {
        padding: 20px 0; /* Further reduced from 25px - 20% reduction */
    }
    
    .support-contact-section {
        padding: 15px 0; /* Further reduced from 20px - 25% reduction */
    }
    
    .timeline-item {
        margin-bottom: 15px; /* Further reduced from 20px - 25% reduction */
    }
    
    .timeline-content {
        padding: 0.75rem; /* Reduced from 1rem - 25% reduction */
    }
    
    .about-grid {
        gap: 20px; /* Further reduced mobile gap between Bex and Oli */
    }
    
    .profile-section {
        padding: 25px; /* Reduced from mobile default - 37% reduction */
    }
    
    .mission-cards-header {
        margin-top: 2rem; /* Reduced for mobile compactness */
        margin-bottom: 0.75rem; /* Tighter spacing to cards below */
    }
    
    .mission-cards-header h3 {
        font-size: 1.5rem; /* Smaller for mobile screens */
    }
    
    .support-contact-grid {
        gap: 1rem; /* Tight mobile columns */
    }
    
    .mission-grid-horizontal {
        gap: 0.75rem; /* Very tight mobile mission grid */
    }
    
    .journey-slider,
    .testimonials-grid {
        gap: 0.75rem; /* Tight mobile grids */
    }
}

/* Impact Cards Responsive Widening */
@media (min-width: 1400px) {
    .mission-impact-header {
        max-width: 1600px; /* Even wider on large screens */
    }
    
    .impact-grid {
        max-width: 1400px; /* Wider on large screens */
        gap: 2rem; /* More breathing room */
    }
    
    .impact-item {
        padding: 2rem 1.5rem; /* Extra generous padding */
    }
}

@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        max-width: 1000px;
    }
    
    .mission-impact-header {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .impact-item {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
    
    .mission-impact-header {
        max-width: 100%;
    }
    
    .impact-item {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-item {
        padding: 1.25rem 1rem;
    }
}
