/* No bottom padding needed, override global rule */
.page-about .content-area {
    padding-bottom: 0;
    background: #f3f5f8;
}

.about-page-header {
    background-image: url("/img/qdts_signature_slide02.jpg");
    background-position: center 78%;
}


/* =====================================================
   Content
===================================================== */

.page-about .about-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 70px 30px;
    box-sizing: border-box;
}

.page-about .about-section {
    background: #fdfdfd;
    border-radius: 18px;
    padding: 36px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* --- General Styles --- */

.page-about .about-section h2 {
    margin: 0 0 18px;
    color: #1a3f74;
    font-size: 30px;
    line-height: 1.2;
    text-align: left;
}

.page-about .about-section p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: #333;
}

.page-about .about-section p:last-child {
    margin-bottom: 0;
}

/* --- List Styling --- */

.page-about .about-section ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.page-about .about-section li {
    position: relative;
    padding-left: 22px;
    font-size: 18px;
    line-height: 1.75;
    color: #333;
}

.page-about .about-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #1a3f74;
    border-radius: 50%;
}

/* --- Section Images and Layout --- */

.page-about .about-full-image {
    display: block;
    width: 100%;
    margin-top: 26px;
    margin-bottom: 32px;
    border-radius: 14px;
}

.page-about .about-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.page-about .about-split img {
    width: 100%;
    max-height: 425px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}


/* =====================================================
   Media Query
===================================================== */

@media (max-width: 899px) {
    .page-about .about-content {
        padding: 30px 16px 45px;
    }

    .page-about .about-section {
        padding: 26px 18px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .page-about .about-section h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .page-about .about-section p,
    .page-about .about-section li {
        font-size: 16px;
        line-height: 1.65;
    }

    .page-about .about-section ul {
        gap: 8px;
        margin-bottom: 22px;
    }

    .page-about .about-section li {
        padding-left: 18px;
    }

    .page-about .about-section li::before {
        top: 10px;
        width: 5px;
        height: 5px;
    }

    .page-about .about-full-image {
        margin-top: 22px;
        margin-bottom: 26px;
        border-radius: 12px;
    }

    .page-about .about-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-about .about-split img {
        max-height: none;
        border-radius: 12px;
    }
}
