.main-container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h2 {
    font-family: AeroRegularSWFTE;
    text-transform: uppercase;
    font-size: 46px;
}

.testimonials-section {
    position: relative;
    padding: 0;
    min-height: 450px;
}

.yellow-section {
    background-color: yellow;
    height: 250px;
    padding: 40px 0 0 0;
}

.gray-section {
    background-color: #E8E8E8;
    height: 290px;
    padding: 0;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0 0 40px 0;
    font-family: Arial, sans-serif;
    text-align: left;
    padding-left: 40px;
}

.testimonials-container {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    z-index: 10;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 0;
    margin: 0 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    height: 380px;
    overflow: hidden;
}

.testimonial-text-area {
    padding: 30px 20px;
    margin: 20px 0 0 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.testimonial-profile-area {
    padding: 20px;
    text-align: center;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.profile-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-title {
    color: #999;
    font-size: 14px;
}

.video-gallery-section {
    background-color: #FFD700;
    padding: 60px 40px;
    margin-top: 0;
}

.video-gallery-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title, .video-gallery-title {
        font-size: 36px;
        text-align: center;
        padding-left: 20px;
    }
    
    .testimonials-container {
        position: static;
        margin-top: 20px;
    }
    
    .yellow-section {
        height: auto;
        padding: 40px 0 20px 0;
    }
    
    .gray-section {
        height: auto;
        padding: 20px 0 40px 0;
    }
    
    .testimonial-card {
        margin: 10px;
        height: auto;
    }
    
    .video-thumbnail {
        height: 150px;
    }
}