:root {
    font-family: Arial, sans-serif;
    color: #1f2937;
}

* { box-sizing: border-box; }
body { margin: 0; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.top-bar {
    height: 49px;
    background: #061534;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar__inner {
    width: min(1280px, calc(100% - 48px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    transition: color 180ms ease;
}

.top-bar__contact:hover {
    color: #1E5D9E;
}

.top-bar__phone-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.main-header {
    height: 110px;
    background: #ffffff;
    border-bottom: 1px solid rgba(18, 40, 78, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header__inner {
    width: min(1280px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.main-header__logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
}

.main-header__logo img {
    display: block;
    width: 168px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.main-navigation a {
    color: #0f2449;
    font-size: 17px;
    line-height: 1.25;
    text-decoration: none;
    font-weight: 500;
    transition: color 180ms ease;
}

.main-navigation a:hover,
.main-navigation a.is-active {
    color: #0069dc;
}

.main-header__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 46px;
    padding: 0 22px;
    border: 1.5px solid #2f72d6;
    border-radius: 999px;
    color: #2f72d6;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: all 180ms ease;
}

.main-header__cta:hover {
    border-color: #061534;
    background: #061534;
    color: #fff;
}

.menu-toggle,
.menu-close,
.menu-overlay {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .top-bar__inner,
    .main-header__inner {
        width: calc(100% - 32px);
    }

    .top-bar__contact {
        font-size: 12px;
    }

    .main-header {
        height: 88px;
    }

    .main-header__inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .main-header__logo img {
        width: 140px;
    }

    .main-navigation {
        justify-content: center;
        gap: 16px;
        min-width: 0;
    }

    .main-navigation a {
        font-size: 15px;
    }

    .main-header__cta {
        min-width: 126px;
        height: 42px;
        padding: 0 16px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    body.menu-open { overflow: hidden; }

    .top-bar { display: none; }

    .main-header { height: 80px; }
    .main-header__inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr auto;
        gap: 12px;
    }
    .main-header__logo img {
        width: 140px;
        max-height: 72px;
    }
    .main-header__cta { display: none; }

    .menu-toggle {
        display: flex;
        width: 45px;
        height: 45px;
        padding: 0;
        border: 0;
        border-radius: 4px;
        background: #171717;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
    }
    .menu-toggle span {
        width: 17px;
        height: 2px;
        background: #b8b8b8;
    }

    .main-navigation {
        position: fixed;
        z-index: 1001;
        top: 0;
        left: 0;
        width: min(250px, 78vw);
        height: 100vh;
        padding-top: 64px;
        display: block;
        background: #353535;
        box-shadow: 2px 0 12px rgb(0 0 0 / 20%);
        transform: translateX(-100%);
        transition: transform 250ms ease;
    }
    .main-navigation a {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px solid rgb(255 255 255 / 7%);
        color: #fff;
        font-size: 16px;
    }
    .main-navigation a:hover,
    .main-navigation a.is-active { color: #5ca8ff; }
    .menu-close {
        display: block;
        position: absolute;
        top: 21px;
        right: 17px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 29px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
    }
    .menu-overlay {
        position: fixed;
        z-index: 1000;
        top: 0;
        right: 0;
        bottom: 0;
        left: min(250px, 78vw);
        display: block;
        background: rgb(3 16 37 / 64%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms ease;
    }
    body.menu-open .main-navigation { transform: translateX(0); }
    body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
}

@media (max-width: 560px) {
    .main-header__inner { width: calc(100% - 32px); }
    .main-header__logo img { width: 140px; }
    .main-navigation { gap: 14px; }
    .main-navigation a { font-size: 14px; }
    .main-header__cta { min-width: 112px; height: 42px; padding: 0 14px; font-size: 14px; }
}

@media (max-width: 640px) {
    .top-bar { display: none; }
}

.site-footer {
    background: #061f4d;
    color: #fff;
    margin-top: 0;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 20px;
    z-index: 998;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #075eae;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: #061534;
}

.back-to-top:focus-visible {
    outline: 3px solid rgb(7 94 174 / 30%);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
    }
}

.site-footer__inner {
    width: min(1248px, calc(100% - 48px));
    margin: 0 auto;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.4fr;
    gap: 74px;
    align-items: flex-start;
    padding: 68px 0 58px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: #fff;
    margin-left: 10px;
    text-align: left;
    gap: 0;
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    margin-bottom: 0;
    line-height: 1;
}

.footer-brand__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand__name {
    display: none;
}

.footer-brand__tag {
    display: none;
}

.footer-brand__text {
margin-top: 17px;    padding: 0;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 22px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
}

.footer-links {
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0 0 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-left: 18px;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: #1E5D9E;
}

.footer-links a::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-contact a:hover {
    color: #1E5D9E;
}

.footer-contact {
    color: #fff;
    text-align: left;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    text-align: left;
}

.footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    flex: 0 0 18px;
    margin-top: 4px;
}

.footer-contact__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #06163A;
;
}

.site-footer__inner--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    padding: 12px 0;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.footer-policy-links a {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
}

@media (max-width: 767px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0 24px;
    }

    .site-footer__inner,
    .site-footer__inner--bottom {
        width: calc(100% - 32px);
    }

    .site-footer__inner--bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 18px 0;
        text-align: center;
    }

    .footer-policy-links {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-brand__logo {
        width: 120px;
        height: 120px;
    }

    .footer-brand__name {
        font-size: 20px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 22px;
    }

    .footer-contact__item,
    .footer-links a,
    .footer-policy-links a,
    .site-footer__bottom p {
        font-size: 15px;
    }
}

/* ...existing code... */

.hero { padding: 6rem 0; text-align: center; }
.site-footer { text-align: center; }

.home-hero {
    min-height: 630px;
    padding: 120px 24px 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), var(--hero-background);
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.home-hero__content {
    width: min(1400px, 100%);
}

.home-hero h1 {
    margin: 0;
    font-size: clamp(38px, 4vw, 66px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -1.5px;
}

.home-hero p {
    margin: 10px auto 23px;
    max-width: 1260px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.45;
}

.home-hero__cta {
    display: inline-flex;
    min-width: 155px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0064c9;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.home-hero__cta:hover { background: #061534; }

@media (max-width: 767px) {
    .home-hero {
        min-height: 80vh;
        padding: 64px 20px 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .home-hero__content {
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .home-hero h1 {
        font-size: clamp(32px, 8vw, 52px);
        line-height: 1.04;
        letter-spacing: -1px;
        text-align: center;
    }

    .home-hero p {
        margin: 18px auto 22px;
        max-width: 520px;
        font-size: clamp(16px, 4vw, 22px);
        line-height: 1.35;
        text-align: center;
    }

    .home-hero__cta {
        min-width: 180px;
        height: 52px;
        font-size: 18px;
    }
}

.home-statistics {
    display: flow-root;
    padding: 0 24px 40px;
    background: #0759ab;
}

.home-statistics__panel {
    width: min(1270px, 100%);
    min-height: 177px;
    margin: -130px auto 0;
    padding: 38px 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: #fff;
    color: #000;
}
a.footer-contact__link {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.home-statistics__item { text-align: center; }
.home-statistics__item strong {
    display: block;
    color: #202d69;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
}
.home-statistics__item span {
    display: block;
    margin-top: 18px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .home-statistics {
        padding: 20px 30px 24px;
        background: #0a5fc9;
    }

    .home-statistics__panel {
        width: min(100%, 420px);
        min-height: 65vh;
        margin: 0 auto;
        padding: 28px 20px 32px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 48px;
        background: #fff;
        border: 1px solid rgba(6, 21, 52, 0.12);
    }

    .home-statistics__item {
        width: 100%;
        padding: 8px 0;
    }

    .home-statistics__item strong {
        font-size: clamp(44px, 11vw, 78px);
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .home-statistics__item span {
        margin-top: 2px;
        font-size: clamp(22px, 5vw, 30px);
        line-height: 1.15;
        font-weight: 400;
    }

    .company-overview {
        padding: 26px 20px 40px;
    }

    .company-overview__inner {
        display: block;
        width: 100%;
    }

    .company-overview__content {
        padding-top: 0;
        margin-bottom: 18px;
    }

    .company-overview h2 {
        margin: 0 0 18px;
        font-size: clamp(40px, 9vw, 62px);
        line-height: 0.92;
        letter-spacing: -1px;
        text-transform: uppercase;
    }

    .company-overview p {
        margin: 0 0 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    .company-overview__image {
        width: 100%;
    }

    .company-overview__image img {
        aspect-ratio: 1.22 / 1;
    }
}

.company-overview {
    padding: 30px 24px 40px;
    background: #fafafa;
}

.company-overview__inner {
    width: min(1248px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 70px;
    align-items: start;
}

.company-overview__content {
    padding-top: 9px;
    color: #526d9b;
}

.company-overview h2 {
    margin: 0 0 55px;
    color: #1b3575;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.company-overview p {
    margin: 0 0 29px;
    font-size: 18px;
    line-height: 1.52;
}

.company-overview p:last-child { margin-bottom: 0; }

.company-overview__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 767px) {
    .company-overview {
        padding: 42px 20px 56px;
    }

    .company-overview__inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .company-overview__content {
        order: 1;
        padding-top: 0;
        margin-bottom: 26px;
    }

    .company-overview h2 {
        margin: 0 0 24px;
        font-size: clamp(24px, 8vw, 36px);
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .company-overview p {
        margin: 0 0 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .company-overview__image {
        order: 2;
        width: 100%;
    }

    .company-overview__image img {
        aspect-ratio: 1.22 / 1;
    }
}

@keyframes section-heading-rise {
    from {
        opacity: 0;
        transform: translateY(48px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-showcase h2 { animation: none; }
}

.services-showcase {
    padding: 76px 24px 64px;
    background: #fff;
}

.services-showcase__inner {
    width: min(1248px, 100%);
    margin: 0 auto;
}

.services-showcase__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-showcase h2 {
    margin: 0;
    color: #202b5d;
    font-family: "Cabin", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    animation: section-heading-rise 750ms ease-out both;
}

.services-showcase__button {
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background: #061534;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 180ms ease;
}

.services-showcase__button:hover,
.services-showcase__button:focus-visible {
    background: #ff321e;
    color: #fff;
    outline: none;
}

.services-slider {
    margin-top: 76px;
    padding: 0 10px;
    overflow: visible;
}

.service-card { overflow: visible; }
.service-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.98 / 1;
    object-fit: cover;
}

.service-card__content {
    position: relative;
    z-index: 1;
    width: calc(100% - 60px);
    height: 106px;
    margin: -64px auto 0;
    margin-bottom: -42px;
    padding: 17px 12px 9px;
    background: #fff;
    overflow: hidden;
    text-align: center;
    clip-path: inset(0 0 42px 0);
    transition: clip-path 250ms ease, transform 250ms ease;
}

.service-card h3 {
    margin: 0;
    color: #26376f;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
}

.service-card a {
    display: inline-block;
    margin-top: 7px;
    color: #6376a0;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}
.service-card a span { font-size: 25px; line-height: 0; vertical-align: -2px; }
.service-card:hover a,
.service-card:focus-within a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.service-card:hover .service-card__content,
.service-card:focus-within .service-card__content {
    clip-path: inset(0);
    transform: translateY(-20px);
}

.services-slider__arrow {
    position: absolute;
    z-index: 2;
    top: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 58%);
    box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
    color: #000;
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}
.services-slider__arrow--previous { padding: 0 3px 3px 0; }
.services-slider__arrow--next { padding: 0 0 3px 3px; }
.services-slider__arrow:hover,
.services-slider__arrow:focus-visible {
    background: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 16%);
    outline: none;
}
.services-slider__arrow--previous { left: -10px; }
.services-slider__arrow--next { right: -10px; }

.services-slider__arrow.swiper-button-disabled { opacity: 1; pointer-events: auto; }

@media (max-width: 767px) {
    .services-showcase {
        padding: 4px 20px 92px;
    }

    .services-showcase__heading {
        display: block;
    }

    .services-showcase h2 {
        font-size: 26px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .services-showcase__button {
        width: 189px;
        height: 50px;
        margin-top: 56px;
        padding: 0;
        font-size: 16px;
    }

    .services-slider {
        margin-top: 60px;
        padding: 0 13px;
    }

    .service-card img {
        aspect-ratio: 1.98 / 1;
    }

    .service-card__content {
        width: calc(100% - 60px);
        height: 78px;
        margin: -34px auto 0;
        margin-bottom: -34px;
        padding: 22px 8px 8px;
        clip-path: inset(0 0 34px 0);
    }

    .service-card h3 {
        font-size: 16px;
        line-height: 1.25;
    }

    .services-slider__arrow {
        top: 54px;
        width: 46px;
        height: 46px;
        font-size: 40px;
    }

    .services-slider__arrow--previous { left: -10px; }
    .services-slider__arrow--next { right: -10px; }
}

.acts-regulations {
    padding: 100px 24px 0;
    background: linear-gradient(to bottom, #061534 0 332px, #fff 332px 100%);
}

.acts-regulations__inner {
    width: min(1248px, 100%);
    min-height: 338px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
}

.acts-regulations h2 {
    margin: 0;
    color: #fff;
    font-family: "Cabin", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}

.acts-regulations__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 338px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 18%);
}

        .services-section {
            width: 100%;

            padding: 25px 0 60px;
        }


        .services-container {
            max-width: 1248px;
            margin: 0 auto;
        }


        /* =========================================
           SECTION HEADING
        ========================================= */

        .services-heading {
            text-align: center;

            margin-bottom: 51px;
        }

        .services-heading h1 {
            color: #172f68;

            font-size: 38px;
            line-height: 1.35;

            font-weight: 500;

            margin-bottom: 13px;
        }

        .services-heading p {
            color: #5a78a4;

            font-size: 17px;
            line-height: 1.6;

            font-weight: 400;
        }


        /* =========================================
           SERVICE GRID
        ========================================= */

        .services-grid {
            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 48px;
        }


        /* =========================================
           SERVICE CARD
        ========================================= */

        .service-card {
            background: #ffffff;

            border-radius: 10px;

            box-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);

            overflow: hidden;

            transition: transform 0.3s ease,
                        box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);

            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
        }


        /* =========================================
           SERVICE IMAGE
        ========================================= */

        .service-image {
            width: 100%;
            height: 295px;

            overflow: hidden;

            background: #eeeeee;
        }

        .service-image img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;

            transition: transform 0.4s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.02);
        }


        /* =========================================
           CARD CONTENT
        ========================================= */

        .service-content {
            padding: 16px 15px 23px;
        }


        .service-content h2 {
            text-align: center;

            color: #172f68;

            font-size: 25px;
            line-height: 1.4;

            font-weight: 600;

            margin-bottom: 13px;
        }


        .service-content p {
            color: #54739f;

            font-size: 16px;
            line-height: 1.62;

            text-align: justify;

            font-weight: 400;
        }


/* =========================================
   SERVICES PAGE — RESPONSIVE
========================================= */

/* Tablet: 1-column, cards capped at 560px and centred */
@media (max-width: 900px) {
    .services-container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        gap: 28px;
    }

    .services-heading {
        padding: 0 16px;
    }

    .services-heading h1 {
        font-size: 28px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .service-image {
        height: 240px;
    }
}

/* Mobile: full-width cards with inset spacing */
@media (max-width: 767px) {
    .services-section {
        padding: 24px 0 48px;
    }

    .services-container {
        padding: 0 16px;
    }

    .services-heading {
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .services-heading h1 {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 700;
    }

    .services-heading p {
        font-size: 15px;
        line-height: 1.65;
    }

    .services-grid {
        max-width: 100%;
        gap: 22px;
    }

    .service-image {
        height: 210px;
    }

    .service-content {
        padding: 16px 18px 22px;
    }

    .service-content h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .services-section {
        padding: 20px 0 36px;
    }

    .services-container {
        padding: 0 14px;
    }

    .services-heading h1 {
        font-size: 21px;
    }

    .services-heading p {
        font-size: 14px;
    }

    .services-grid {
        gap: 18px;
    }

    .service-image {
        height: 185px;
    }

    .service-content {
        padding: 14px 14px 18px;
    }

    .service-content h2 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 14px;
    }
}


.acts-regulations__list {
    margin: 0;
    padding: 48px 50px;
    list-style: none;
}

.acts-regulations__list--light { background: #fff; }
.acts-regulations__list--blue { background: #095aaa; }

.acts-regulations__list li {
    border-bottom: 1px solid rgb(22 47 94 / 14%);
}
.acts-regulations__list li:last-child { border-bottom: 0; }

.acts-regulations__list--light {
    transition: box-shadow 180ms ease;
}

.acts-regulations__list--light:hover,
.acts-regulations__list--light:focus-within {
    box-shadow: 0 8px 22px rgb(18 38 77 / 14%);
}

.acts-regulations__list a {
    display: block;
    padding: 11px 0;
    color: #071d59;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
}

.acts-regulations__list--blue li { border-color: rgb(255 255 255 / 18%); }
.acts-regulations__list--blue a { color: #fff; font-weight: 400; }
.acts-regulations__list a:hover { text-decoration: none; }
.acts-regulations__list--blue a:hover,
.acts-regulations__list--blue a:focus-visible {
    margin: 0 -20px;
    padding-right: 20px;
    padding-left: 20px;
    background: #fff;
    color: #071d59;
    text-decoration: none;
    outline: none;
}

@media (max-width: 767px) {
    .acts-regulations {
        padding: 34px 10px 48px;
        background: #061534;
    }

    .acts-regulations__inner {
        width: 100%;
        min-height: 0;
        display: block;
    }

    .acts-regulations h2 {
        margin: 0 0 68px;
        font-size: 25px;
        line-height: 1.7;
    }

    .acts-regulations h2 br {
        display: none;
    }

    .acts-regulations__panel {
        display: block;
        min-height: 0;
        box-shadow: 0 3px 8px rgb(0 0 0 / 18%);
    }

    .acts-regulations__list {
        padding: 18px 35px 16px;
    }

    .acts-regulations__list--blue {
        margin-top: 30px;
    }

    .acts-regulations__list a {
        padding: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.clients-showcase {
    padding: 0 24px 62px;
    background: #fff;
}

.clients-showcase__inner {
    width: min(1248px, 100%);
    margin: 0 auto;
}

.clients-showcase h2 {
    margin: 0;
    color: #202b5d;
    font-family: "Cabin", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}

.clients-slider {
    position: relative;
    margin-top: 63px;
    padding: 0 10px;
}

.client-logo {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    display: block;
    width: auto;
    max-width: 82%;
    max-height: 110px;
    object-fit: contain;
}

.clients-slider__next {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgb(32 43 93 / 12%);
    font-size: 46px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 180ms ease;
}
.clients-slider__next:hover,
.clients-slider__next:focus-visible { color: #202b5d; outline: none; }

@media (max-width: 767px) {
    .clients-showcase {
        padding: 10px 8px;
    }

    .clients-showcase__inner {
        width: 100%;
    }

    .clients-showcase h2 {
        font-size: 26px;
        line-height: 1.2;
        text-align: center;
    }

    .clients-slider {
        width: 100%;
        margin-top: 22px;
        padding: 0 10px;
    }

    .client-logo {
        min-height: 125px;
        padding: 8px 10px;
    }

    .client-logo img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 108px;
        object-fit: contain;
    }

    .clients-slider__next {
        right: 0;
        top: 35%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 42px;
        padding: 0;
        transform: translateY(-50%);
        font-size: 40px;
        line-height: 1;
    }
}

.faq-section {
    padding: 52px 24px 90px;
    background: #f2f3f5;
}

.faq-section__inner {
    width: min(1248px, 100%);
    margin: 0 auto;
}

.faq-section__heading {
    color: #4c5d7a;
    text-align: center;
    padding: 26px 0 10px;
}

.faq-section h3 {
    margin: 0;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: #202b5d;
    margin-bottom: 17px;
    font-family: "Cabin", sans-serif;
    letter-spacing: -0.04em;
}

.faq-section__heading p {
    margin: 18px auto 0;
    max-width: 650px;
    color: rgba(21, 35, 62, 0.75);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

.faq-list {
    margin-top: 42px;
}

.faq-item {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(20, 39, 74, 0.08);
    box-shadow: none;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item:first-child {
    margin-top: 0;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(20, 39, 74, 0.12);
    box-shadow: 0 10px 25px rgba(18, 38, 77, 0.06);
}

.faq-item summary {
    position: relative;
    min-height: 84px;
    padding: 20px 72px 20px 26px;
    display: flex;
    align-items: center;
    color: #202b5d;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #1b2e5d;
    border-right: 2px solid #1b2e5d;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 180ms ease;
}

.faq-item[open] summary {
    color: #0067da;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(-45deg);
}

.faq-item__answer {
    padding: 0 26px 18px;
    color: #62718d;
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}

.faq-item__answer p {
    margin: 0;
    max-width: 100%;
    color: #62718d;
    font-size: 17px;
    line-height: 26px;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 68px 10px 64px;
    }

    .faq-section__inner {
        width: 100%;
    }

    .faq-section__heading {
        padding: 0;
    }

    .faq-section h3 {
        width: 100%;
        margin: 0 auto 20px;
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.08;
        letter-spacing: -0.02em;
    }

    .faq-section__heading p {
        max-width: 380px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.65;
    }

    .faq-section__heading p br {
        display: none;
    }

    .faq-list {
        margin-top: 50px;
    }

    .faq-item {
        margin-top: 18px;
        border: 0;
        background: #fff;
    }

    .faq-item[open] {
        background: #fff;
        border: 0;
        box-shadow: none;
    }

    .faq-item summary {
        min-height: 81px;
        padding: 18px 54px 18px 25px;
        font-size: 16px;
        line-height: 1.25;
    }

    .faq-item summary::after {
        right: 28px;
    }

    .faq-item__answer {
        padding: 0 25px 24px;
        font-size: 17px;
        line-height: 26px;
    }

    .faq-item__answer p {
        font-size: 17px;
        line-height: 26px;
    }
}

.page-banner {
    min-height: 300px;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(3 16 37 / 58%), rgb(3 16 37 / 58%)), var(--page-banner-background);
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.page-banner__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.page-banner h1 {
    margin: 0;
    font-family: "Cabin", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
}

.contact-hero {
    padding: 92px 24px 86px;
    background: #061534;
    color: #fff;
    text-align: center;
}

.contact-hero__inner,
.contact-content__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.contact-hero__eyebrow {
    margin: 0 0 14px;
    color: #70b2ff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0;
    font-family: "Cabin", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
}

.contact-hero__inner > p:last-child {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.6;
}

.contact-content {
    padding: 38px 24px 60px;
    background: #fff;
}

.contact-content__inner {
    width: min(1264px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.contact-details {
    padding-top: 122px;
}

.contact-details h2,
.contact-form h2 {
    margin: 0 0 18px;
    color: #1b3575;
    font-family: "Cabin", sans-serif;
    font-size: 32px;
    line-height: 1.15;
}

.contact-details > p {
    margin: 0;
    color: #526d9b;
    font-size: 17px;
    line-height: 1.6;
}

.contact-details__list {
    display: grid;
    gap: 24px;
    margin-top: 38px;
}

.contact-details__item {
    display: flex;
    gap: 10px;
    color: #526d9b;
    font-size: 17px;
    line-height: 1.5;
}

.contact-details__icon {
    display: inline-flex;
    flex: 0 0 18px;
    width: 18px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #aab8ce;
    font-size: 16px;
}

.contact-details__icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details__item strong,
.contact-details__item a,
.contact-details__item span:last-child {
    display: inline;
}

.contact-details__item strong {
    margin-right: 6px;
    color: #202d69;
}

.contact-details__item a {
    color: #526d9b;
    text-decoration: none;
}

.contact-details__item a:hover {
    color: #0069dc;
}

.contact-form {
    padding: 36px 40px 48px;
    background: #fff;
    box-shadow: 0 8px 24px rgb(18 38 77 / 10%);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin: 18px 0 7px;
    color: #202d69;
    font-size: 15px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(18, 40, 78, 0.2);
    border-radius: 2px;
    color: #1f2937;
    font: inherit;
    background: #fff;
}

.contact-form input {
    height: 45px;
}

.contact-form textarea {
    min-height: 145px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #62718d;
    opacity: 1;
}

.contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    color: #62718d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.contact-form label.contact-form__consent {
    margin: 12px 0 0;
    font-weight: 400;
}

.contact-form__consent input {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-top: 5px;
}

.contact-form__consent a {
    color: #202d69;
    text-decoration: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2f72d6;
    outline: 2px solid rgba(47, 114, 214, 0.18);
}

.contact-form button {
    min-width: 160px;
    height: 48px;
    margin-top: 24px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #0759ab;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: #061534;
    outline: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 767px) {
    .page-banner {
        min-height: 220px;
        padding: 60px 20px;
    }

    .page-banner h1 {
        font-size: 42px;
    }

    .contact-hero {
        padding: 64px 20px 58px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero__inner > p:last-child {
        font-size: 16px;
    }

    .contact-content {
        padding: 48px 20px 64px;
    }

    .contact-content__inner {
        width: 100%;
        display: block;
    }

    .contact-details {
        padding-top: 0;
    }

    .contact-details h2,
    .contact-form h2 {
        font-size: 28px;
    }

    .contact-details > p {
        font-size: 16px;
        white-space: normal;
    }

    .contact-form {
        margin-top: 44px;
        padding: 26px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form__consent {
        font-size: 14px;
    }
}

.contact-section {
    width: 100%;
    padding: 36px 24px 50px;
    background: #fff;
}

.contact-container {
    width: min(1265px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 25px;
    align-items: center;
}

.contact-info {
    padding-top: 30px;
}

.contact-info h1 {
    margin: 0 0 15px;
    color: #152e69;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 600;
}

.intro {
    margin: 0 0 43px;
    color: #52709f;
    font-size: 16px;
    line-height: 1.55;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    color: #55729f;
    font-size: 16px;
    line-height: 1.6;
}

.info-item .icon {
    width: 20px;
    min-width: 20px;
    padding-top: 4px;
    color: #a9bdd7;
}

.info-item .icon svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-item div > span {
    margin-right: 7px;
    color: #172f68;
    font-weight: 500;
}

.info-item p {
    display: inline;
    color: #55729f;
}

.info-item a {
    color: #55729f;
    text-decoration: none;
}

.info-item a:hover {
    color: #005dcc;
}

.contact-form-box {
    min-height: 562px;
    padding: 32px 40px 49px;
    background: #fff;
    box-shadow: 0 10px 40px rgb(0 0 0 / 7%);
}

.contact-form-box h2 {
    margin: 0 0 26px;
    color: #152e69;
    font-size: 24px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    min-width: 0;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    outline: none;
    color: #49688f;
    font: inherit;
    background: #fff;
}

.contact-form-box input {
    height: 45px;
    padding: 0 20px;
}

.contact-form-box textarea {
    display: block;
    height: 145px;
    padding: 12px 20px;
    resize: vertical;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #52709f;
    opacity: 1;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #116bd1;
    box-shadow: 0 0 0 1px rgb(17 107 209 / 8%);
}

.full-input {
    margin-bottom: 20px;
}

.form-error {
    display: none;
    margin-top: 4px;
    color: #f33;
    font-size: 16px;
    line-height: 1.3;
}

.form-error.is-visible {
    display: block;
}

.contact-page-form input.is-invalid,
.contact-page-form textarea.is-invalid,
.contact-page-form .consent input.is-invalid {
    border-color: #f33;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 9px;
    color: #5a78a4;
    font-size: 15px;
    line-height: 1.75;
}

.consent input {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 4px;
    accent-color: #075fb6;
}

.consent a {
    color: #233b9b;
    text-decoration: none;
}

.contact-form-box button {
    height: 50px;
    margin-top: 35px;
    padding: 0 31px;
    border: 0;
    border-radius: 28px;
    background: #075eae;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form-box button:hover,
.contact-form-box button:focus-visible {
    background: #004b91;
    box-shadow: 0 5px 15px rgb(0 94 174 / 20%);
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .contact-container {
        width: min(92%, 700px);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-top: 10px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-container {
        width: 90%;
    }

    .contact-info h1 {
        font-size: 27px;
    }

    .intro {
        font-size: 14px;
    }

    .contact-form-box {
        min-height: 0;
        padding: 25px 20px 35px;
    }

    .contact-form-box h2 {
        font-size: 21px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-error {
        font-size: 14px;
    }

    .consent {
        font-size: 14px;
    }
}

.about-highlights {
    background: #f5f5f5;
}

.about-highlights__stats {
    width: 100%;
    min-height: 298px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: #202d69;
}

.about-highlights__stat {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-highlights__stat + .about-highlights__stat {
    border-left: 1px solid rgb(255 255 255 / 7%);
}

.about-highlights__stat strong {
    color: #fff;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
}

.about-highlights__stat span {
    margin-top: 18px;
    color: #b8c3df;
    font-size: 18px;
}

.about-highlights__cards {
    width: min(1265px, calc(100% - 48px));
    margin: 0 auto;
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-highlight-card {
    min-height: 270px;
    padding: 48px 30px 34px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 18px rgb(18 38 77 / 5%);
}

.about-highlight-card svg {
    width: 68px;
    height: 68px;
    fill: none;
    stroke: #0067da;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-highlight-card h2 {
    margin: 22px 0 10px;
    color: #202d69;
    font-size: 24px;
    line-height: 1.2;
}

.about-highlight-card p {
    max-width: 300px;
    margin: 0 auto;
    color: #62718d;
    font-size: 16px;
    line-height: 1.55;
}

.clients-showcase--about {
    padding: 0 24px;
}

.clients-showcase--about .clients-slider {
    margin-top: 0;
}

.clients-showcase--about .client-logo {
    min-height: 118px;
}

@media (max-width: 767px) {
    .about-highlights__stats {
        min-height: 420px;
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .about-highlights__stat {
        min-height: 0;
    }

    .about-highlights__stat + .about-highlights__stat {
        border-top: 1px solid rgb(255 255 255 / 7%);
        border-left: 0;
    }

    .about-highlights__stat strong {
        font-size: 46px;
    }

    .about-highlights__stat span {
        margin-top: 8px;
        font-size: 16px;
    }

    .about-highlights__cards {
        width: calc(100% - 32px);
        padding: 48px 0 56px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-highlight-card {
        min-height: 230px;
        padding: 34px 24px 28px;
    }

    .clients-showcase--about {
        padding: 0 8px;
    }

    .clients-showcase--about .clients-slider {
        margin-top: 0;
    }

    .clients-showcase--about .client-logo {
        min-height: 110px;
    }
}
  /* ================= ACTS SECTION ================= */

        .acts-section {
            width: 100%;
            padding: 24px 0 40px;
        }

        .acts-container {
            width: calc(100% - 144px);
            max-width: 1440px;
            margin: 0 auto;
        }

        .acts-heading {
            text-align: center;
            margin-bottom: 51px;
        }

        .acts-heading h1 {
            color: #172f68;
            font-size: 38px;
            line-height: 1.35;
            font-weight: 500;
            margin-bottom: 13px;
        }

        .acts-heading p {
            color: #5b79a3;
            font-size: 17px;
            line-height: 1.6;
            font-weight: 400;
        }

        /* ================= CARDS ================= */

        .acts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .act-card {
            min-height: 231px;
            padding: 17px 35px 25px;
            background: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .11);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .act-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .13);
        }

        .act-card h2 {
            text-align: center;
            color: #172f68;
            font-size: 24px;
            line-height: 1.4;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .act-card p {
            color: #5b769f;
            font-size: 16px;
            line-height: 1.62;
            text-align: justify;
            font-weight: 400;
        }

        /* Tablet: two cards per row */
        @media (max-width: 1024px) {
            .acts-container {
                width: min(92%, 760px);
            }

            .acts-heading h1 {
                font-size: 32px;
            }

            .acts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 24px;
            }

            .act-card {
                padding: 17px 24px 25px;
            }
        }

        /* Phone: one full-width card per row */
        @media (max-width: 767px) {
            .acts-section {
                padding: 32px 0 48px;
            }

            .acts-container {
                width: calc(100% - 32px);
            }

            .acts-heading {
                margin-bottom: 30px;
            }

            .acts-heading h1 {
                margin: 0 0 12px;
                font-size: clamp(26px, 7vw, 32px);
                line-height: 1.2;
            }

            .acts-heading p {
                margin: 0;
                font-size: 15px;
                line-height: 1.55;
            }

            .acts-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .act-card {
                min-height: 0;
                padding: 20px 20px 22px;
            }

            .act-card h2 {
                margin: 0 0 12px;
                font-size: 21px;
                line-height: 1.3;
            }

            .act-card p {
                margin: 0;
                font-size: 15px;
                line-height: 1.6;
                text-align: left;
            }
        }
/* ================= LEGAL / POLICY PAGES ================= */
.legal-page {
    padding: 48px 24px 78px;
    background: #fff;
}

.legal-page__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
    color: #171717;
    font-size: 15px;
    line-height: 1.45;
}

.legal-page__inner h1 {
    margin: 0 0 34px;
    color: #171717;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.legal-page__inner p {
    margin: 0 0 18px;
}

.legal-page__updated {
    margin-bottom: 20px !important;
    color: #171717;
    font-weight: 700;
}

.legal-page__inner h2 {
    margin: 28px 0 14px;
    color: #171717;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.3;
}

.legal-page__inner h2:first-of-type {
    margin-top: 0;
}

.legal-page__inner ul {
    margin: 0 0 18px;
    padding-left: 24px;
}

.legal-page__inner li {
    margin-bottom: 5px;
    padding-left: 4px;
}

.legal-page__inner address {
    margin: 0 0 18px;
    font-style: normal;
}

.legal-page__inner a {
    color: inherit;
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .legal-page {
        padding: 34px 20px 56px;
    }

    .legal-page__inner {
        font-size: 15px;
        line-height: 1.6;
    }

    .legal-page__inner h1 {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .legal-page__updated {
        margin-bottom: 24px !important;
    }

    .legal-page__inner h2 {
        margin-top: 28px;
        font-size: 17px;
    }

    .legal-page__inner ul {
        padding-left: 20px;
    }
}

 .submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner Animation */
.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 404 page  */
.error-404-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.error-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* 404 Number & Icon */
.error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 110px;
    font-weight: 700;
    color: #4b586e;
    line-height: 1;
    margin-bottom: 25px;
}

.error-icon-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon {
    width: 100%;
    height: 100%;
    color: #ff4d30;
}

/* Text Formatting */
.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #172033;
    margin-bottom: 12px;
}

.error-description {
    font-size: 15px;
    color: #707b8e;
    margin-bottom: 30px;
}

/* Search Bar */
.error-search-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto 35px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.error-search-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #e1e6eb;
    border-right: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.error-search-form button {
    background-color: #0b51a1;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.error-search-form button:hover {
    background-color: #083c77;
}

/* Back to Home Button */
.back-home-btn {
    display: inline-block;
    background-color: #0d1b3e;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.back-home-btn:hover {
    background-color: #172a5a;
}
