/* =========================
   ABOUT PAGE BANNER
========================= */

.page-banner {
    background: linear-gradient(135deg, #6a5af9, #836fff);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.page-banner h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f1d44;
}

.about-text p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


/* =========================
   WHY CHOOSE (ABOUT PAGE VERSION)
========================= */

.features-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-box i {
    font-size: 30px;
    color: #6a5af9;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f1d44;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}


/* =========================
   MISSION SECTION
========================= */

.mission-section {
    padding: 80px 0;
    background: #f8f9ff;
    text-align: center;
}

.mission-section p {
    max-width: 800px;
    margin: 20px auto 0;
    color: #555;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }
}

@media(max-width: 768px) {

    .page-banner {
        padding: 70px 20px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .about-section,
    .mission-section {
        padding: 60px 0;
    }
}
