﻿/* QBL Benefits Section */
.qbl_benefits_section {
    background: linear-gradient(140deg, #A069FF 4.19%, #6600BF 98.3%);
    padding: 10vh 40px;
    position: relative;
}

.benefits_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit_item {
    text-align: center;
    color: white;
}

.benefit_icon_wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #00D4E4 0%, #00B8C6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.2);
}

.benefit_icon_wrap.benefit_icon_yellow {
    background: linear-gradient(135deg, #FFD93D 0%, #FFB800 100%);
}

.benefit_icon_wrap.benefit_icon_purple {
    background: linear-gradient(135deg, #C69BFF 0%, #A86EFF 100%);
}

.benefit_icon {
    width: 80px;
    height: 80px;
}

.benefit_title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.benefit_text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* Reviews Section */
.reviews_section {
    background: linear-gradient(140deg, #A069FF 4.19%, #6600BF 98.3%);
    padding: 10vh 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review_card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.review_avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: -80px auto 20px;
    border: 5px solid white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.review_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review_name {
    font-size: 20px;
    font-weight: 700;
    color: #00D4E4;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.review_text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.review_stars {
    color: #FFD700;
    font-size: 24px;
}

/* Mentors Section */
.mentors_section {
    background: linear-gradient(180deg, #87CEEB 0%, #B0E0F6 100%);
    padding: 10vh 40px;
    text-align: center;
}

.section_header {
    font-size: 60px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.mentors_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.mentor_card {
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    border: 3px solid #5B9BD5;
}

.mentor_avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #5B9BD5;
}

.mentor_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor_name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.mentor_info {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact_section {
    background: white;
    padding: 10vh 40px;
}

.contact_header {
    font-size: 60px;
    font-weight: 800;
    color: #00D4E4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}
.contact_grid {
    display: grid;
    grid-template-columns: 45% 50%;
    grid-gap: 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact_ceo {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo_avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #00D4E4;
}

.ceo_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo_name {
    font-size: 24px;
    font-weight: 700;
    color: #00D4E4;
    margin-bottom: 5px;
}

.ceo_title {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.ceo_quote {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.contact_info_block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_intro {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact_icon {
    width: 60px;
    height: 60px;
    background: #00D4E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact_icon img {
    width: 30px;
    height: 30px;
}

.contact_details {
    text-align: left;
}

.contact_label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact_link {
    font-size: 18px;
    font-weight: 700;
    color: #00D4E4;
    text-decoration: none;
}

.contact_link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .benefits_grid {
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }
    
    .reviews_section {
        grid-template-columns: 1fr;
        grid-gap: 80px;
        padding: 15vh 40px;
    }
    
    .mentors_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px 20px;
    }
    
    .section_header {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .contact_grid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    
    .contact_header {
        font-size: 40px;
        margin-bottom: 40px;
    }
}
