/* About Us Page Specific Styles */

/* Hero Section */
.about-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.about-hero-content .highlight {
    color: #ff6b6b;
}

/* About Sections */
.about-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Story Section */
.about-story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-story-text {
    flex: 1;
    min-width: 300px;
}

.about-story-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mission Section */
.mission-section {
    background-color: #f8f9fa;
}

.mission-statement {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.mission-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    border-left: none;
}

.mission-list {
    padding-left: 20px;
}

.mission-list li {
    margin-bottom: 10px;
}

/* Impact Section */
.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
    gap: 20px;
}

.impact-stat {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Team Section */
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    max-width: 300px;
}

.team-member-avatar {
    font-size: 4rem;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
    color: #333;
}

.team-member-title {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 0.95rem;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    max-width: 350px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    margin: 0;
    line-height: 1.4;
}

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

.about-cta h2 {
    color: white;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    background-color: white;
    color: #ff6b6b;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-story-container {
        flex-direction: column;
    }
    
    .about-story-image {
        order: -1;
    }
    
    .impact-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .team-member, .testimonial {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .mission-statement blockquote {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}