/* .section-wrapper {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(23deg, #184554, #2d7d96);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: #1f3745;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
} */

.modern-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 15px;
    transform: translateY(0);
    color: #6c757d;
    z-index: 1;
}

.search-box input {
    padding-left: 45px;
    padding-right: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid rgba(50, 110, 146, 0.2);
    width: 100%;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: -1px;
    transform: translateY(0);
    border: none;
    background: linear-gradient(23deg, #184554, #2d7d96);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(0) scale(1.05);
}

.simple-keyboard {
    display: none;
    width: 100%;
    height: 11vh;
    background: #f8f9fa;
    color: gray;
    margin-top: 15px;
}

.simple-keyboard .hg-row {
    display: flex;
    justify-content: space-between;
}

.simple-keyboard .hg-button {
    flex: 1;
    margin: 3px;
    padding: 6px;
    font-size: 1em;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    cursor: pointer;
    border-radius: 4px;
}

.featured-city {
    overflow: hidden;
    margin-bottom: 50px;
}

.city-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.city-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.city-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.city-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-content {
    padding: 20px;
}

.city-content h3 {
    color: #1f3745;
    margin: 15px 0;
}

.city-description {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 20px;
}

.partnership-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    margin-bottom: 10px;
}

.detail-item i {
    color: #326e92;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(23deg, #184554, #2d7d96);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card .city-image {
    margin: -20px -20px 20px -20px;
}

.city-info h4 {
    color: #1f3745;
    margin-bottom: 10px;
}

.city-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.partnership-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.partnership-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.partnership-meta i {
    color: #326e92;
}

.btn-view-details {
    color: #326e92;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.btn-view-details i {
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(5px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(23deg, #184554, #2d7d96);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-item h4 {
    color: #1f3745;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .city-image {
        margin-bottom: 20px;
    }
    
    .partnership-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
