/* 

--QUALITY_SERVICE_SECTION_BG: #282A30;
--QUALITY_SERVICE_SECTION_TXT_TITLE_COLOR: #FFFFFF;
--QUALITY_SERVICE_SECTION_TXT_DES_COLOR: #B8BABF;
--QUALITY_SERVICE_SECTION_INNER_CONTENT_BG: #3B3F47;
--QUALITY_SERVICE_SECTION_CONTENT_ICON_BG: #36a5d9;
--QUALITY_SERVICE_SECTION_CONTENT_TITLE_COLOR: #FFFFFF;
--QUALITY_SERVICE_SECTION_CONTENT_DES_COLOR: #FFFFFF;

*/

:root {
	--QUALITY_SERVICE_SECTION_INNER_CONTENT_BG: #3B3F47;
}

.quality-service2-section {
    background: var(--QUALITY_SERVICE_SECTION_BG);
    border-radius: 10px;
    padding: 40px 100px;
    margin: 50px auto;
}

.quality-service2-section .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.quality-service2-section .text-title {
    color: var(--QUALITY_SERVICE_SECTION_TXT_TITLE_COLOR);
    font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
}

.quality-service2-section .section-description {
    text-align: center;
    margin-bottom: 25px;
}

.quality-service2-section .text-description {
    color: var(--QUALITY_SERVICE_SECTION_TXT_DES_COLOR);
    font-size: var(--SUBHEADER_FONT_SIZE);
}

.quality-service2-section .section-content {
    margin-top: 0;
}

.quality-service2-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quality-service2-section .inner-content {
    background: var(--QUALITY_SERVICE_SECTION_INNER_CONTENT_BG);
    border-radius: 8px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quality-service2-section .inner-content:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.quality-service2-section .content-icon {
    flex-shrink: 0;
    width: 42px;
    height: 40px;
    background: var(--QUALITY_SERVICE_SECTION_CONTENT_ICON_BG);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-service2-section .content-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;

}

.quality-service2-section .content-detail {
    flex: 1;
}

.quality-service2-section .content-title {
    color: var(--QUALITY_SERVICE_SECTION_CONTENT_TITLE_COLOR);
    font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
    font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    margin-bottom: 8px;
}

.quality-service2-section .content-description {
    color: var(--QUALITY_SERVICE_SECTION_CONTENT_DES_COLOR);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quality-service2-section {
        padding: 24px;
    }
    
    .quality-service2-section .row {
        grid-template-columns: 1fr;
    }
    
    .quality-service2-section .inner-content:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .quality-service2-section .text-title {
        font-size: 24px;
    }
    
    .quality-service2-section .text-description {
        font-size: 14px;
    }
}
