.country-regions-map-section {
    background: #f8fafc;
    padding: 70px 0;
}

.country-regions-map-section .section-header {
    margin-bottom: 28px;
}

.country-map-intro {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 10px 0 0;
    max-width: 720px;
}

.country-map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.country-map-tab {
    border: 1px solid #dbe3f0;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-map-tab:hover,
.country-map-tab:focus {
    border-color: #1a62dc;
    color: #1a62dc;
}

.country-map-tab.is-active {
    background: #1a62dc;
    border-color: #1a62dc;
    color: #fff;
}

.country-map-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
}

.country-map-panel[hidden] {
    display: none;
}

.country-panel-header h3 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #0f172a;
}

.country-panel-header p {
    margin: 0 0 20px;
    color: #64748b;
    font-size: 14px;
}

.country-map-visual {
    max-width: 960px;
    margin: 0 auto 24px;
    background: #ffffff;
}

.country-map-toggle-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.country-map-visual.csl-map-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0 10px;
}

.country-map-visual.csl-map-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

.country-map-visual .map-module-svg-state-graphic {
    fill: #0099cc;
    stroke: #ffffff;
    stroke-width: 1;
    transition: fill 0.15s ease;
}

.country-map-visual .map-module-svg-state-link:hover .map-module-svg-state-graphic,
.country-map-visual .map-module-svg-state-link:focus .map-module-svg-state-graphic {
    fill: #007aa3;
}

.country-map-visual .map-module-svg-state-link {
    cursor: pointer;
}

.country-map-visual .map-module-svg-state-label {
    fill: #ffffff;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
}

.country-regions-grid--collapsible[hidden] {
    display: none !important;
}

.country-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.country-region-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.country-region-card:hover {
    border-color: #1a62dc;
    color: #1a62dc;
    box-shadow: 0 8px 20px rgba(26, 98, 220, 0.08);
}

.country-region-card i {
    color: #94a3b8;
    font-size: 12px;
}

@media (max-width: 768px) {
    .country-regions-map-section {
        padding: 48px 0;
    }

    .country-map-panel {
        padding: 20px 16px;
    }

    .country-regions-grid {
        grid-template-columns: 1fr;
    }
}
