/* About Us page responsive rules */

/* Mobile devices */
@media (max-width: 767px) {
    .navigation {
        order: 3;
        width: 100%;
        height: 45%;
        top: 7%;
    }

    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .page-banner {
        height: auto;
    }

    .banner-content {
        padding: 32px 20px 42px;
    }

    .banner-content h1 {
        font-size: 36px;
        max-width: 100%;
    }

    .banner-content p {
        font-size: 18px;
        max-width: 100%;
    }

    .compliance-wrapper,
    .mission-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .compliance-wrapper {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .compliance-content,
    .compliance-image,
    .about-content,
    .mission-card,
    .team-card {
        width: 100%;
    }

    .compliance-image {
        width: 100%;
    }

    .compliance-image img {
        height: auto;
        min-height: 320px;
        object-fit: cover;
    }

    .compliance-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .compliance-content p {
        font-size: 16px;
    }

    .stats-section .container,
    .mission-section .container,
    .team-section .container {
        padding: 0 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h2 {
        font-size: 45px;
    }

    .stat-item p {
        font-size: 18px;
    }

    .page-banner {
        margin-top: -25px;
    }

    g .banner-content {
        height: auto;
        justify-content: center;
        padding: 40px 20px 50px;
    }

    .banner-content h1 {
        font-size: 40px;
        max-width: 100%;
    }

    .banner-content p {
        font-size: 18px;
        max-width: 100%;
    }

    .banner-bg img {
        height: auto;
    }

    .mission-heading h2,
    .team-heading h2 {
        font-size: 44px;
    }

    .mission-heading p,
    .team-heading p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        padding: 36px 18px 42px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .compliance-content h2 {
        font-size: 28px;
    }

    .stat-item h2 {
        font-size: 38px;
    }
}


/* HD devices */
@media (min-width: 1280px) and (max-width: 1599px) {
    .container {
        max-width: 1180px;
        padding: 0 28px;
    }

    .banner-content h1 {
        font-size: 60px;
    }

    .compliance-content h2 {
        font-size: 52px;
    }

    .mission-heading h2,
    .team-heading h2 {
        font-size: 62px;
    }
}

/* Full HD devices */
@media (min-width: 1600px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .banner-content h1 {
        font-size: 66px;
    }

    .compliance-content h2 {
        font-size: 56px;
    }
}

/* Mac devices and large retina screens */
@media screen and (min-width: 1920px) {
    .container {
        max-width: 1700px;
        padding: 0 50px;
    }

    .banner-content h1 {
        font-size: 72px;
    }

    .banner-content p {
        font-size: 24px;
    }

    .compliance-image img {
        max-height: 700px;
    }
}