/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-mission {
    padding: 4rem 0;
}

.about-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-mission h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-mission p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 350px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-visual i {
    font-size: 6rem;
    opacity: 0.8;
}

.about-offer {
    background: var(--light);
    padding: 4rem 0;
}

.about-offer h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

.about-team {
    padding: 4rem 0;
}

.about-team h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-team p {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-avatar i {
    font-size: 2.5rem;
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-card .role {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.about-impact {
    background: var(--light);
    padding: 4rem 0;
}

.about-impact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.about-cta {
    padding: 4rem 0;
}

.about-cta-content {
    text-align: center;
    background: var(--light);
    padding: 3rem;
    border-radius: 12px;
}

.about-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-visual {
        height: 250px;
    }
    
    .about-visual i {
        font-size: 4rem;
    }
    
    .about-mission h2,
    .about-offer h2,
    .about-team h2,
    .about-impact h2 {
        font-size: 1.5rem;
    }
}
