.about-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.member-contact {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.member-contact a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    color: var(--text-color);
}

.member-contact a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.member-contact a:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 500px;
    }

    .team-member {
        padding: 2rem;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .member-img {
        width: 120px;
        height: 120px;
    }

    .member-contact {
        gap: 1.25rem;
    }

    .member-contact a img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-bio {
        font-size: 0.95rem;
    }
}