/* Styles for the top section with image */
.face-cleanser-section {
    display: flex; 
    align-items: center; 
    gap: 50px;
    margin: 60px auto;
    padding: 0 80px;   
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.face-cleanser-section .image-column {
    flex: 1 1 60%; 
}

.face-cleanser-section .image-column img {
    width: 94%;
    height: auto;
    display: block;
    background: transparent;
}

.face-cleanser-section .text-column {
    flex: 1 1 60%;
}

.face-cleanser-section .title-wrapper {
    margin-bottom: 30px;
}

.face-cleanser-section .section-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #20479e;
    margin: 0;
    padding: 0;
}

.face-cleanser-section .title-underline {
    width: 80px;
    height: 4px;
    background-color: #000;
    margin-top: 15px;
}

.face-cleanser-section .text-column p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 0 0 15px 0;
    text-align: left;
}

.face-cleanser-section .text-column p:last-of-type {
    margin-bottom: 0;
}

.face-cleanser-section .highlight-text {
    color: #d99854;
    font-weight: 500;
}

/* Styles for the bottom text-only section */
.additional-info-section {
    padding: 0 80px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.additional-info-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .face-cleanser-section {
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .face-cleanser-section .image-column,
    .face-cleanser-section .text-column {
        flex-basis: 100%;
        max-width: 100%;
    }

    .face-cleanser-section .section-title,
    .face-cleanser-section .text-column p {
        text-align: center;
    }

    .face-cleanser-section .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .additional-info-section {
        padding: 0 20px 40px;
    }
}