.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.text-section {
    flex: 0 0 400px;
    padding-right: 20px;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #213868;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: Montserrat ExtraBold, sans-serif;
}

.subtitle {
    font-size: 18px;
    color: #213868;
    margin-bottom: 8px;
    font-weight: normal;
    letter-spacing: 1px;
    font-family: Montserrat Bold, sans-serif;
}

.description {
    font-size: 14px;
    line-height: 1.8;
    color: #616161;
    margin-bottom: 20px;
}

.map-section {
    flex: 1;
    position: relative;
}

.map__world {
    padding: 48px 0;
}

#map {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#map svg {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: block;
}

.country {
    fill: #d4d4d4;
    stroke: #1a1a1a;
    stroke-width: 0.2;
    transition: fill 0.3s ease;
}

.country.highlighted {
    fill: #4a6b8a;
}

.country.partner {
    fill: #4a6b8a;
}

.country:hover {
    fill: #5a7b9a;
    cursor: pointer;
}

.flag-marker {
    cursor: pointer;
    transition: transform 0.15s ease-out;
    transform-origin: center;
}


.flag-icon {
    width: 30px;
    height: 20px;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.title {
    font-size: 48px;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .text-section {
        flex: none;
        width: 100%;
        padding-right: 0;
    }

    .map-section {
        width: 100%;
    }
}

@media (max-width: 998px) {
    .title {
        font-size: 24px;
    }

    .content-wrapper {
        padding: 24px 15px;
    }
}

/* Grab Cursor for Map */
#map svg {
    cursor: grab;
}

#map svg:active {
    cursor: grabbing;
}