.elementor-9079 .elementor-element.elementor-element-9142ea4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3e88d11 */.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
}

.country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #000, #C9A000);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Flag */
.country img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Hover */
.country:hover {
    background: linear-gradient(135deg, #fff, #FFD700);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}/* End custom CSS */