/* About Section Styles */
.about-section {
    padding: 60px 20px;
    margin-bottom: 0;
    border-radius: 8px;
}

/* Grey section */
.about-section-grey {
    background-color: #f5f5f5;
}

/* White section */
.about-section-white {
    background-color: #ffffff;
}

/* Blue section */
.about-section-blue {
    background-color: #e6f0fa;
}

.about-section .section-title {
    color: #1b3979;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ff7700;
}

.about-section .subsection-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.accreditation-list,
.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.accreditation-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.accreditation-list li i {
    color: #1b3979;
    position: absolute;
    left: 0;
    top: 11px;
}

.features-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.features-list li i {
    color: #ff7700;
    position: absolute;
    left: 0;
    top: 13px;
}

.features-list li strong {
    color: #1b3979;
}

.community-support {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.gtas-support {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 15px;
}

.gtas-logo-container {
    flex: 0 0 auto;
    margin-right: 20px;
    width: 150px;
    margin-top: 15px;
}

.gtas-text {
    flex: 1 1 auto;
}

.gtas-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .gtas-support {
        flex-direction: column;
    }

    .gtas-logo-container {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .about-section .section-title {
        font-size: 24px;
    }

    .about-section .subsection-title {
        font-size: 20px;
    }
}