
    /* Image Gallery Styles */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.container {
    position: relative;
    width: 100%;
    aspect-ratio: 360 / 220;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.container:hover {
    transform: scale(1.03);
}

.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 18px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {
    .gallery-images {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
        padding: 12px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 450px) {
    .gallery-images {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
}
    
    /* Clean text overlay - no background, bottom left */
    .text-overlay {
        position: absolute;
        bottom: 15px;
        left: 15px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        font-family: Arial, sans-serif;
        line-height: 1.4;
    }
    .country-name-text {
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 0.5px;
        display: block;
    }
    .sub-text {
        font-size: 14px;
        opacity: 0.9;
        display: block;
        letter-spacing: 0.5px;
    }
    
    /* Text Gallery Styles (bottom part) */
    .gallery-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        font-family: Arial, sans-serif;
        border-top: 2px solid #eee;
        margin-top: 30px;
    }
    .country-item {
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s;
        min-width: 150px;
    }
    .country-item:hover {
        transform: translateY(-5px);
    }
    .country-name {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }
    .country-name a {
        text-decoration: none;
        color: #333;
    }
    .country-name a:hover {
        color: #0066cc;
    }
    .time-zones-text {
        font-size: 14px;
        color: #999;
        text-transform: lowercase;
        letter-spacing: 1px;
    }
    
    .section-title {
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 24px;
        color: #333;
        padding: 20px 0;
        width: 100%;
    }
    .no-results {
        text-align: center;
        padding: 50px;
        color: #666;
        font-family: Arial, sans-serif;
    }
    
    /* Image placeholder when no image found */
    .no-image-placeholder {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 20px;
        font-family: Arial, sans-serif;
    }
