/* Common Styles */
.call-girls-section, .escorts-section {
    width: 84%;
    /* max-width: 1200px; */
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    border-top: 5px solid purple;

}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.total-count {
    font-size: 16px;
    color: #666;
}

.dropdown-icon {
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
    max-height: fit-content; /* Adjust based on content */
    opacity: 1;
}

.city-list.collapsed {
    max-height: 0;
    opacity: 0;
}

.city-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.city-count {
    color: black;
    font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 18px;
    }

    .total-count {
        font-size: 14px;
    }

    .dropdown-icon {
        font-size: 18px;
    }

    .city-list li {
        font-size: 14px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 16px;
    }

    .total-count {
        font-size: 12px;
    }

    .dropdown-icon {
        font-size: 16px;
    }

    .city-list li {
        font-size: 20px;
        padding: 4px 0;
    }
}
