/* Start custom CSS */.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 25px auto 0;
        }
        
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .country-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }
        
        .country-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .flag-container {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .flag-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .country-card:hover .flag-container img {
            transform: scale(1.05);
        }
        
        .country-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .country-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }
        
        .country-desc {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 10px;
            flex-grow: 1;
        }
        
        .country-link {
            display: inline-flex;
            align-items: center;
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }
        
        .country-link:hover {
            color: #1d4ed8;
        }
        
        .country-link i {
            margin-left: 8px;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }
        
        .country-link:hover i {
            transform: translateX(4px);
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .countries-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .countries-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .flag-container {
                height: 140px;
            }
            
            .country-content {
                padding: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 15px;
            }
            
            .section-header {
                margin-bottom: 30px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .countries-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .flag-container {
                height: 150px;
            }
        }/* End custom CSS */