/* ================================
   HOME — WHO WE ARE SECTION
================================ */

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-lg);
    background: #F5F6FA;
}



/* Left Text */
.about-left {
    width: 55%;
}

.about-left h2 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.about-left h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    display: block;
    margin-top: var(--space-xs);
    border-radius: var(--radius-full);
}

.about-left p {
    font-size: var(--fs-base);
    color: var(--text-medium);
    margin-top: var(--space-sm);
    line-height: 1.8;
}

/* Right Image */
.about-right {
    width: 45%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.about-right img {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-sm);
        gap: var(--space-md);
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-right img {
        max-width: 400px;
        margin-top: var(--space-sm);
    }
}


/* ================================
   HOME — HOW WE WORK SECTION
================================ */

.how-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-lg);
    background: var(--section-white);
    position: relative;
}

/* Left Text */
.how-left {
    width: 55%;
}

.how-left h2 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.how-left h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    display: block;
    margin-top: var(--space-xs);
    border-radius: var(--radius-full);
}

.how-left p {
    font-size: var(--fs-base);
    color: var(--text-medium);
    margin-top: var(--space-sm);
    line-height: 1.8;
}

.how-left .points-list.number {
    padding-left: 0;
    margin-top: var(--space-sm);
}

.how-left .points-list.number li {
    font-size: var(--fs-base);
    color: var(--text-medium);
    margin-bottom: 14px;
    line-height: 1.7;
}


/* Right Image */
.how-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.how-right img {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
}


/* Responsive */
@media (max-width: 900px) {
    .how-section {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-sm);
        gap: var(--space-md);
    }

    .how-left,
    .how-right {
        width: 100%;
    }

    .how-left h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .how-right img {
        max-width: 400px;
        margin-top: var(--space-sm);
    }

    .points-list.number {
        text-align: left;
        margin: var(--space-sm) auto 0;
        max-width: 400px;
    }
}


/* ================================
   QUALITY SECTION
================================ */

.quality-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-3xl) var(--space-lg);
    background: #F5F6FA;
}



/* LEFT SIDE IMAGE */
.quality-left {
    width: 45%;
    display: flex;
    justify-content: center;
}

.quality-left img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* RIGHT SIDE TEXT */
.quality-right {
    width: 55%;
    z-index: 1;
}

.quality-right h2 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.quality-right h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    display: block;
    margin-top: var(--space-xs);
    border-radius: var(--radius-full);
}

.quality-right .section-text {
    margin: var(--space-sm) 0 var(--space-md);
    font-size: var(--fs-base);
    color: var(--text-medium);
    line-height: 1.8;
}

.quality-right .points-list li {
    margin-bottom: 12px;
    font-size: var(--fs-base);
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .quality-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: var(--space-xl) var(--space-sm);
        gap: var(--space-md);
    }

    .quality-left,
    .quality-right {
        width: 100%;
    }

    .quality-right h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .quality-left img {
        max-width: 400px;
        margin-bottom: var(--space-sm);
    }

    .points-list {
        text-align: left;
        margin: 0 auto;
        max-width: 400px;
    }
}