﻿/* About Us Section */
.about-us-section {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

    .about-us-section h1 {
        font-size: 36px;
        color: #f57f17;
        margin-bottom: 20px;
    }

    .about-us-section p {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
    }

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .team-member h3 {
        font-size: 22px;
        color: #f57f17;
    }

    .team-member p {
        font-size: 16px;
        color: #666;
    }
/* Video Section */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0; /* Adjust the margin as needed */
}

    .video-container video {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-height: 500px; /* Limit the height if needed */
        border-radius: 12px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    }

/* Responsive Design for Video */
@media screen and (max-width: 768px) {
    .video-container {
        margin: 20px 0;
    }

        .video-container video {
            max-height: 300px;
        }
}
