/* About Us Page Styles */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern-overlay.png') repeat;
    opacity: 0.1;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* About Introduction */
.about-intro {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

/* Mission and Vision */
.mission-vision {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.mv-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.mv-card ul {
    list-style: none;
    padding: 0;
}

.mv-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.mv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Values Section */
.values {
    padding: 60px 0;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
}

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

.role {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Impact Section */
.impact {
    padding: 60px 0;
}

.impact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f0f4ff, #fff);
    border-radius: 12px;
    border: 1px solid #e0e7ff;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Community Section */
.community {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.community h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.community-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

/* Recognition Section */
.recognition {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.recognition h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.recognition-content {
    max-width: 800px;
    margin: 0 auto;
}

.recognition-content > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.recognition-list {
    list-style: none;
    padding: 0;
}

.recognition-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    color: #555;
}

/* Future Section */
.future {
    padding: 60px 0;
}

.future h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.future-content > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.future-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.plan-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff, #fff);
    border-radius: 8px;
    border: 1px solid #e0e7ff;
}

.plan-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.plan-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .future-plans {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}