/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
    padding: 120px 80px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fb);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* MAIN LAYOUT */

.about-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* IMAGE */

.single-about-img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.single-about-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* RIGHT CONTENT */

.about-right p {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

/* SECTION HEADING */

.about-focus h3,
.about-box h3 {
    font-size: 34px;
    font-family: 'Playfair Display', serif;
    color: #0c2340;
    margin-bottom: 30px;
}

/* FOCUS GRID */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

/* FOCUS CARD */

.focus-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 160, 23, 0.08);
    transition: all 0.35s ease;
}

.focus-card:hover {
    transform: translateY(-6px);
}

.focus-card h4 {
    font-size: 22px;
    color: #d4a017;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.focus-card ul {
    padding-left: 20px;
}

.focus-card ul li {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 10px;
}

.focus-card ul li::marker {
    color: #d4a017;
}

/* ABOUT BOX */

.about-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.03);
}

.about-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .about-page {
        padding: 90px 40px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-focus h3,
    .about-box h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .about-page {
        padding: 70px 20px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-right p {
        font-size: 15px;
        line-height: 1.8;
    }

    .focus-card {
        padding: 22px;
    }

    .focus-card h4 {
        font-size: 20px;
    }

    .about-box {
        padding: 25px;
    }

    .about-box h3 {
        font-size: 24px;
    }

    .about-box p {
        font-size: 15px;
    }
}

.regulatory-box {
    background: #f7f1e3;
    padding: 60px 70px;
    border-left: 6px solid #d4a017;
    border-radius: 28px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.regulatory-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #c84c3d;
    margin-bottom: 35px;
    line-height: 1.2;
}

.regulatory-box p {
    font-size: 17px;
    line-height: 2;
    color: #4b4b4b;
    margin-bottom: 28px;
    text-align: justify;
    max-width: 95%;
}

/* Tablet */
@media (max-width: 992px) {
    .regulatory-box {
        padding: 40px;
    }

    .regulatory-box h3 {
        font-size: 38px;
    }

    .regulatory-box p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .regulatory-box {
        padding: 25px;
        border-radius: 18px;
    }

    .regulatory-box h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .regulatory-box p {
        font-size: 15px;
        line-height: 1.8;
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .about-focus h3,
    .about-box h3 {
        font-size: 22px;
    }

    .focus-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .regulatory-box {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .regulatory-box h3 {
        font-size: 20px;
        /* pehle 28px tha */
        line-height: 1.4;
        margin-bottom: 18px;
        word-break: break-word;
    }

    .regulatory-box p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .regulatory-box h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .regulatory-box {
        padding: 22px 18px;
    }
}