
.st-global-country {
    --st-bg: #f3f6ff;
    --st-white: #ffffff;
    --st-heading: #103564;
    --st-text: #34445f;
    --st-border: #e8edf5;
    --st-tag-border: #103564;
    --st-blue: #0365D3;
    --st-blue-dark: #0365D3;
    --st-red: #103564;
    --st-orange: #103564;
    --st-pink: #103564;

    width: 100%;
    padding: 18px 20px 36px;
    background: var(--st-bg);
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.st-global-country *,
.st-global-country *::before,
.st-global-country *::after {
    box-sizing: border-box;
}

.st-global-country__inner {
    width: min(1330px, 100%);
    margin: 0 auto;
    padding: 0 8px;
}

.st-global-country__header {
    text-align: center;
    padding: 4px 0 25px;
}

.st-global-country__header h2 {
    margin: 0;
    color: var(--st-heading);
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.st-global-country__underline {
    display: block;
    width: 72px;
    height: 4px;
    margin: 17px auto 0;
    border-radius: 999px;
    background: var(--st-red);
}

.st-country-card {
    width: 100%;
    margin: 0 0 24px;
    padding: 25px 25px 27px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(26, 49, 94, 0.07);
}

.st-country-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.st-country-card__bar {
    display: block;
    width: 5px;
    height: 26px;
    flex: 0 0 5px;
    border-radius: 1px;
    background: #2f6bea;
}

.st-country-card__title h3 {
    margin: 0;
    color: #151d2f;
    font-size: clamp(21px, 2vw, 24px);
    line-height: 1.3;
    font-weight: 700;
}

.st-country-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.st-country-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 7px 14px;
    border: 1.5px solid var(--st-tag-border);
    border-radius: 999px;
    background: #fff;
    color: var(--st-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    white-space: normal;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.st-country-tag:hover,
.st-country-tag:focus-visible {
    color: #ffffff;
    background: var(--st-blue);
    border-color: var(--st-blue);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(40, 100, 232, 0.18);
    outline: none;
}

.st-country-tag--active {
    color: #fff;
    background: var(--st-blue);
    border-color: var(--st-blue);
    box-shadow: 0 5px 12px rgba(40, 100, 232, 0.22);
}

.st-global-country__cta-wrap {
    display: flex;
    justify-content: center;
    padding: 9px 0 0;
}

.st-global-country__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 10px 25px;
    border-radius: 999px;
    background: linear-gradient(100deg, var(--st-orange), var(--st-pink));
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        0 0 0 1px rgba(255, 154, 36, 0.1),
        0 7px 24px rgba(52, 220, 120, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-global-country__cta:hover,
.st-global-country__cta:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 154, 36, 0.1),
        0 10px 30px rgba(52, 220, 120, 0.42);
    outline: none;
}

.st-global-country__cta-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.95);
    border-radius: 50%;
    font-size: 12px;
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {
    .st-global-country {
        padding: 16px 16px 30px;
    }

    .st-global-country__inner {
        padding: 0;
    }

    .st-country-card {
        padding: 22px 20px 23px;
        margin-bottom: 18px;
    }

    .st-country-tags {
        gap: 9px;
    }

    .st-country-tag {
        font-size: 13.5px;
        min-height: 38px;
        padding: 7px 12px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .st-global-country {
        padding: 12px 10px 26px;
    }

    .st-global-country__header {
        padding-bottom: 20px;
    }

    .st-global-country__header h2 {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    .st-global-country__underline {
        width: 58px;
        height: 3px;
        margin-top: 12px;
    }

    .st-country-card {
        padding: 18px 14px 19px;
        border-radius: 11px;
        margin-bottom: 15px;
    }

    .st-country-card__title {
        gap: 9px;
        margin-bottom: 13px;
    }

    .st-country-card__bar {
        width: 4px;
        height: 23px;
        flex-basis: 4px;
    }

    .st-country-card__title h3 {
        font-size: 20px;
    }

    .st-country-tags {
        gap: 8px;
    }

    .st-country-tag {
        width: auto;
        max-width: 100%;
        min-height: 36px;
        padding: 7px 11px;
        font-size: 12.5px;
        line-height: 1.3;
    }

    .st-global-country__cta {
        width: 100%;
        max-width: 320px;
        min-height: 50px;
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ---------- Small phones ---------- */
@media (max-width: 420px) {
    .st-global-country {
        padding-left: 7px;
        padding-right: 7px;
    }

    .st-country-card {
        padding: 16px 12px 17px;
    }

    .st-country-tag {
        font-size: 12px;
        padding: 6px 9px;
    }

    .st-global-country__cta {
        font-size: 13.5px;
    }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .st-country-tag,
    .st-global-country__cta {
        transition: none;
    }
}


.st-sitemap {
    --st-sitemap-bg: #f5f7ff;
    --st-sitemap-white: #ffffff;
    --st-sitemap-heading: #24377f;
    --st-sitemap-link: #123f68;
    --st-sitemap-link-hover: #2864e8;
    --st-sitemap-red: #ef4b43;

    width: 100%;
    padding: 0 20px 55px;
    background: var(--st-sitemap-bg);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    box-sizing: border-box;
}

.st-sitemap *,
.st-sitemap *::before,
.st-sitemap *::after {
    box-sizing: border-box;
}

.st-sitemap__container {
    width: min(1360px, 100%);
    min-height: 100px;
    margin: 0 auto;
    padding: 0 12px 45px;
    background: var(--st-sitemap-white);
}

/* ---------- Heading ---------- */

.st-sitemap__header {
    text-align: center;
    padding: 0 0 27px;
}

.st-sitemap__header h1 {
    margin: 0;
    color: var(--st-sitemap-heading);
    font-size: clamp(32px, 3.1vw, 43px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.st-sitemap__underline {
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 20px;
    background: var(--st-sitemap-red);
}

/* ---------- Sitemap content ---------- */

.st-sitemap__content {
    width: 100%;
}

.st-sitemap__group {
    width: 100%;
}

.st-sitemap__list,
.st-sitemap__list ul {
    margin: 0;
    padding-left: 30px;
}

.st-sitemap__list {
    color: var(--st-sitemap-link);
}

.st-sitemap__list li {
    margin: 0;
    padding: 0;
    color: var(--st-sitemap-link);
    font-size: 16px;
    line-height: 1.85;
}

.st-sitemap__list > li {
    margin-bottom: 1px;
}

.st-sitemap__list ul {
    padding-left: 31px;
}

.st-sitemap__list li::marker {
    font-size: 0.72em;
}

.st-sitemap__list a {
    color: var(--st-sitemap-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

.st-sitemap__list a:hover,
.st-sitemap__list a:focus-visible {
    color: var(--st-sitemap-link-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
    outline: none;
}

/* ---------- Tablet ---------- */

@media (max-width: 991px) {
    .st-sitemap {
        padding: 0 14px 40px;
    }

    .st-sitemap__container {
        padding: 0 15px 35px;
    }

    .st-sitemap__header {
        padding-bottom: 24px;
    }

    .st-sitemap__list,
    .st-sitemap__list ul {
        padding-left: 27px;
    }

    .st-sitemap__list li {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
    .st-sitemap {
        padding: 0 8px 30px;
    }

    .st-sitemap__container {
        padding: 0 12px 28px;
    }

    .st-sitemap__header {
        padding-bottom: 20px;
    }

    .st-sitemap__header h1 {
        font-size: 29px;
        letter-spacing: -0.4px;
    }

    .st-sitemap__underline {
        width: 58px;
        height: 3px;
        margin-top: 11px;
    }

    .st-sitemap__list,
    .st-sitemap__list ul {
        padding-left: 22px;
    }

    .st-sitemap__list li {
        font-size: 14px;
        line-height: 1.75;
        overflow-wrap: anywhere;
    }

    .st-sitemap__list ul {
        margin-top: 1px;
    }
}

/* ---------- Small phones ---------- */

@media (max-width: 420px) {
    .st-sitemap {
        padding-left: 5px;
        padding-right: 5px;
    }

    .st-sitemap__container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .st-sitemap__header h1 {
        font-size: 27px;
    }

    .st-sitemap__list,
    .st-sitemap__list ul {
        padding-left: 19px;
    }

    .st-sitemap__list li {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .st-sitemap__list a {
        transition: none;
    }
}
