/* ================================================================= */
/* == PAGE-SPECIFIC STYLES FOR EXFOLIATING FACE WASH PAGE         == */
/* ================================================================= */

/* 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;
}

.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 */
.private-label-section {
    padding: 0 80px 60px;
    font-family: 'Poppins', sans-serif;
}

.private-label-section .divider {
    border-top: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.private-label-section .section-heading {
    font-size: 28px;
    color: #20479e;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 25px;
    font-weight: 600;
}

.private-label-section .text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* --- Blue Call-to-Action --- */
.new-blue-cta-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: url('../images/Contact_2_Us_V1.png') no-repeat center center;
    background-size: cover;
}
.blue-cta-box {
    position: relative;
    background-color: rgba(17, 61, 145, 0.95);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 8px;
    color: white;
}
.blue-cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
}
.blue-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.blue-cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid white;
    width: 100%;
    max-width: 250px;
}
.blue-cta-buttons .btn-primary {
    background-color: white;
    color: #113D91;
}
.blue-cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
}
.blue-cta-buttons .btn:hover {
    opacity: 0.9;
}

/* 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;
    }

    .private-label-section {
        padding: 0 20px 40px;
    }
    
    .private-label-section .section-heading {
        text-align: center;
        font-size: 24px;
    }

    .blue-cta-title {
        font-size: 1.8rem;
    }
    
    .blue-cta-buttons {
        flex-direction: column;
    }
}