/* About Page Styling */

.about-page {
    background: #ffffff;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.content-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-list svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #10b981;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    color: #2563eb;
    opacity: 0.5;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-works-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.how-works-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.team-member {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 1rem;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-avatar svg {
    color: white;
}

.member-info h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-desc {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .content-text h2,
    .story-section h2,
    .how-works-section h2,
    .team-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }
}