/* 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.4;
    color: black;
    margin: 0 0 15px 0;
    text-align: left;
}

.face-cleanser-section .text-column p:last-of-type {
    margin-bottom: 0;
}

/* Styles for the "Why Choose Us" section */
.why-choose-us-section {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    max-width: 960px;
    margin: 40px auto;
    border-top: 1px solid #e0e0e0;
    padding: 50px 15px 0;
}

.why-choose-us-section .main-heading {
    font-size: 26px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #20479e;
}

.why-choose-us-section .heading-underline {
    width: 50px;
    height: 3px;
    background-color: #000000;
    margin-bottom: 25px;
}

.why-choose-us-section .features-list {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}

.why-choose-us-section .features-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.why-choose-us-section .features-list li strong {
    font-weight: 700;
}

.why-choose-us-section .sub-heading {
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
}

.why-choose-us-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 15px;
}

/* 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;
    }

    .why-choose-us-section {
        padding-top: 40px;
    }

    .why-choose-us-section .main-heading {
        font-size: 24px;
        text-align: center;
    }

    .why-choose-us-section .heading-underline {
        margin-left: auto;
        margin-right: auto;
    }
}