.cities-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    margin-top: -10px;
    padding: 0 20px 100px 20px;
    box-sizing: border-box;
    
    display: flex;
    justify-content: center;
    
    z-index: 5;
}

.cities-container {
    position: relative;
    z-index: 6; 
    max-width: 1200px; 
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Typography --- */
.cities-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.cities-description {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.cities-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; 
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.text-green {
    color: #00BC74;
    font-weight: 600;
}

/* --- Map Image Styles --- */
.cities-map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.cities-map {
    width: 100%;
    max-width: 1000px; 
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
    .cities-section {
        /* Less overlap on mobile if needed */
        margin-top: -150px; 
        overflow: hidden;
        width: 100%;
    }

    .cities-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .cities-description p {
        font-size: 14px;
    }
}

.cities-description .text-gradient {
    background: linear-gradient(90deg, #05D585 0%, #55FFBE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cities-toggle-btn {
    display: none;
    color: #00BC74;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.cities-btn-more {
    margin-left: 5px;
}

.cities-btn-less {
    margin-top: 10px;
    display: none; 
}

.cities-ellipsis {
    display: none;
}

@media (max-width: 768px) {
    
    .cities-section {
        margin-top: -10px;
        padding-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .cities-container {
        text-align: left;
    }

    .cities-map {
    margin-top: 60px;
    }

    .cities-description {
        text-align: left;
        margin: 0;
    }

    .cities-description p {
        text-align: left;
    }

    .cities-title {
        text-align: center;
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cities-btn-more {
        display: inline;
    }

    .cities-ellipsis {
        display: inline;
    }

    .cities-more-text, 
    .cities-more-block {
        display: none;
    }

    .cities-description.is-expanded .cities-more-text {
        display: inline;
    }

    .cities-description.is-expanded .cities-more-block {
        display: block;
    }

    .cities-description.is-expanded .cities-ellipsis {
        display: none;
    }

    .cities-description.is-expanded .cities-btn-more {
        display: none;
    }

    .cities-description.is-expanded .cities-btn-less {
        display: inline-block;
    }
}