/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: var(--beige);
    padding: 100px 0 40px; /* Changed from 80px to 40px */
    /* min-height: 60vh; */ /* Commented out min-height */
    display: flex;
    align-items: flex-start;
    padding-top: 200px;
}

.about-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--english-red);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: white;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 50%; /* Wider aspect ratio */
}

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

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: var(--beige);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.vision-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-icon {
    font-size: 1.5rem;
}

.vision-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Why Section */
.why-section {
    padding: 8rem 0;
    background: white;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

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

.reason-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Impact Section */
.impact-section {
    padding: 8rem 0;
    background: var(--beige);
}

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

.impact-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.impact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.impact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* CTA Section */
.about-cta-section {
    padding: 8rem 0;
    background: var(--english-red);
    color: white;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary.large,
.cta-secondary.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.cta-primary {
    background: white;
    color: var(--english-red);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--english-red);
}

/* Responsive Design */
@media (max-width: 968px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vision-visual {
        order: 2;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary.large,
    .cta-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero {
        padding-top: 140px;
        padding-bottom: 30px; /* Reduced mobile bottom padding */
        /* min-height: auto; */ /* Commented out min-height */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta-content h2 {
        font-size: 2rem;
    }
    
    .about-cta-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}