.w32993022-container {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
    text-align: left;
}

.w32993022-header {
    margin-bottom: 35px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 20px;
}

.w32993022-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #001a33;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.w32993022-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #b30000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.w32993022-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.w32993022-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 40px;
    margin-bottom: 35px;
    align-items: start;
}

.w32993022-map-col {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    border: 1px solid #e2e8f0;
}

.w32993022-map-wrapper {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.w32993022-image-map {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    max-height: 400px;
}

.w32993022-map-placeholder {
    text-align: center;
    color: #718096;
}

/* Tabs & Interaction */
.w32993022-tabs-headers {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.w32993022-tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #718096;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.w32993022-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: all 0.3s;
}

.w32993022-tab-btn.active {
    color: #001a33;
}

.w32993022-tab-btn.active::after {
    background-color: #b30000;
}

.w32993022-tab-panel {
    display: none;
}

.w32993022-tab-panel.active {
    display: block;
    animation: fadeIn_32993022 0.4s ease;
}

.w32993022-section-desc {
    font-size: 15px;
    color: #4a5568;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

/* Badges List */
.w32993022-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.w32993022-badge {
    background-color: #e2e8f0;
    color: #001a33;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.w32993022-badge:hover, .w32993022-badge.active {
    background-color: #001a33;
    color: #ffffff;
}

.w32993022-badge.active {
    border-color: #b30000;
}

/* Countries Grid */
.w32993022-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.w32993022-country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f1f5f9;
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}

.w32993022-country-item:hover, .w32993022-country-item.active {
    background-color: #001a33;
    border-color: #b30000;
}

.w32993022-country-item:hover span, .w32993022-country-item.active span {
    color: #ffffff !important;
}

.w32993022-flag-img {
    width: 32px;
    height: auto;
    margin-bottom: 8px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.w32993022-country-item span {
    font-size: 13px;
    font-weight: 700;
    color: #001a33;
    transition: color 0.2s;
}

/* Interactive Details Display Box */
.w32993022-info-panel {
    background-color: #f8fafc;
    border-left: 4px solid #b30000;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    min-height: 100px;
    animation: slideIn_32993022 0.3s ease;
}

.w32993022-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: #001a33;
    margin: 0 0 8px 0;
}

.w32993022-panel-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.w32993022-footer {
    border-top: 2px solid #f0f4f8;
    padding-top: 25px;
}

@keyframes fadeIn_32993022 {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn_32993022 {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
    .w32993022-grid {
        grid-template-columns: 1fr;
    }
    .w32993022-map-col {
        min-height: auto;
    }
}
