/* ===================================== */
/* ABOUT US – JS SCROLL COMPATIBLE */
/* ===================================== */

.section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: transform 0.6s ease;
    display: flex;
    flex-direction: column;
    color: white;
    background-position: center;
    z-index: 1;
    will-change: transform;
    background-size: cover;
}

.section.dark {
    background-color: #0d0d0d;
}

.section.light {
    background-color: #1c1c1c;
}

/* ---------- CONTENT ---------- */
.content {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
    padding-top: calc(10rem + 100px);
    overscroll-behavior:contain ;
}

/* ---------- CONTAINER ---------- */
.about-container {
    width: 85%;
    max-width: 1200px;
    margin-left: 10vw;
}

/* ---------- HEADINGS ---------- */
.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* ---------- TEXT ---------- */
.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e6e6e6;
}

.about-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #cccccc;
    max-width: 900px;
}

/* ---------- QUALITY LIST ---------- */
.quality-list {
    margin: 25px 0 30px;
    padding-left: 20px;
}

.quality-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #f2af53;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */
@media (max-width: 1000px) {

    .about-container {
        width: 100%;
        margin-left: 0;
    }

    .page-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-heading {
        font-size: 2rem;
        text-align: center;
    }

    .lead-text,
    .about-container p {
        text-align: center;
        font-size: 1rem;
    }

    .quality-list {
        list-style: none;
        padding-left: 0;
        text-align: center;
    }

    .quality-list li {
        font-size: 1rem;
    }

    .content {
        padding-top: calc(7rem + 100px);
    }
}
