<style>
    /* ... keep all your existing CSS ... */
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
        }
        
        .international-page {
            min-height: 100vh;
            padding: 80px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .header-section {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .book-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #000000;
            color: #ffd700;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }
        
        .book-icon {
            font-size: 18px;
        }
        
        h1 {
            font-size: 48px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.2;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .subtitle {
            font-size: 20px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .intro-text {
            text-align: center;
            background: #fffbf0;
            border-left: 4px solid #ffd700;
            padding: 25px 30px;
            border-radius: 10px;
            margin-bottom: 50px;
        }
        
        .intro-text p {
            font-size: 18px;
            color: #2d3748;
            font-weight: 500;
        }
        
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .country-card {
            background: #ffffff;
            border: 3px solid #e0e0e0;
            border-radius: 20px;
            padding: 35px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .country-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #ffd700;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .country-card:hover {
            border-color: #ffd700;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .country-card:hover::before {
            transform: scaleY(1);
        }
        
        .country-flag {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
            font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  
}

 
        }
        
        .country-name {
            font-size: 24px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 15px;
        }
        
        .retailer-name {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .order-button {
            display: inline-block;
            background: #ffd700;
            color: #000000;
            padding: 15px 35px;
            font-size: 16px;
            font-weight: 800;
            text-decoration: none;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }
        
        .order-button:hover {
            background: #000000;
            color: #ffd700;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .usa-section {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .usa-title {
            font-size: 20px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
        }
        
        .usa-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .back-link {
            text-align: center;
            margin-top: 50px;
        }
        
        .back-link a {
            color: #666;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .back-link a:hover {
            color: #000000;
            
        }
        
        @media (max-width: 768px) {
            .international-page {
                padding: 50px 20px;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .subtitle {
                font-size: 18px;
            }
            
            .countries-grid {
                grid-template-columns: 1fr;
            }
            
            .country-card {
                padding: 30px 25px;
            }
        
    .country-flag {
        width: 60px;
        height: 40px;
        margin-bottom: 15px;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        object-fit: cover;
    }
    
 
    }
    
    /* Adjust hover effect for cards with images */
    .country-card:hover .country-flag {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
</style>