.team-section {
    padding: 2rem 4rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.overview-section {
    padding: 2rem 4rem;
}

.overview-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-section {
    padding: 2rem 4rem;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-section {
        padding: 1rem;
    }

    .video-container {
        padding-bottom: 75%;
    }

    .overview-section {
        padding: 1rem;
    }

    .overview-section h2 {
        font-size: 1.5rem;
    }

    .overview-section p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .team-section {
        padding: 1rem;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-pic {
        width: 80px;
        height: 80px;
    }
}
