/* About Page Styles */

/* Banner Section */
.about-banner {
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.85) 50%, rgba(139, 92, 246, 0.85) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=600&fit=crop') center center / cover no-repeat;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    text-align: center;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-banner-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
    background: var(--gray-100);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.value-icon-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.value-icon-2 {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}

.value-icon-3 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        gap: 3rem;
    }

    .values-grid {
        gap: 2rem;
    }

    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .about-banner-content h1 {
        font-size: 2.5rem;
    }

    .about-banner-content p {
        font-size: 1.25rem;
    }

    .our-story,
    .our-values,
    .our-team {
        padding: 3rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card,
    .team-card {
        padding: 2rem;
    }

    .team-avatar {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        padding: 2.5rem 0;
    }

    .about-banner-content h1 {
        font-size: 2rem;
    }

    .about-banner-content p {
        font-size: 1.1rem;
    }

    .our-story,
    .our-values,
    .our-team {
        padding: 2.5rem 0;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .value-card,
    .team-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .value-card h3,
    .team-card h3 {
        font-size: 1.25rem;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
    }
}

