/* ======================================================
   ABOUT PAGE
====================================================== */

.about-page {
    background: #ffffff;
}

/* =========================
   HERO
========================= */

.about-hero {
    padding: 30px 0 30px;
    background: #ffffff;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    max-width: 680px;
}

.about-hero-content .breadcrumb {
    margin-bottom: 28px;
}

.about-hero-content h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.about-hero-content h2 {
    margin: 0 0 22px;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
}

.about-hero-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 12px;
}


/* =========================
   CONTENT
========================= */

.about-content-section {
    padding: 60px 0 80px;
    background: #f9fafb;
}

.about-content-section > .container {
    max-width: 920px;
}

.about-content-section h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
}

.about-content-section h3 {
    margin: 42px 0 14px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.about-content-section h4 {
    margin: 28px 0 10px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.about-content-section p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.about-content-section strong {
    color: #1f2937;
}

.about-content-section ul {
    margin: 0 0 25px;
    padding-left: 22px;
}

.about-content-section li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-image {
        order: -1;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

}


@media (max-width: 600px) {

    .about-hero {
        padding: 35px 0 30px;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-content h2 {
        font-size: 22px;
    }

    .about-hero-content p,
    .about-content-section p,
    .about-content-section li {
        font-size: 16px;
    }

    .about-content-section {
        padding: 45px 0 60px;
    }

    .about-content-section h2 {
        font-size: 28px;
    }

    .about-content-section h3 {
        font-size: 22px;
    }

}