 /* Additional responsive styles for Countries page */
        
        /* Country Detail Cards */
        .country-detail-card {
            background: var(--bg-light);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow-light);
            transition: all 0.4s ease;
            position: relative;
            margin-bottom: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .country-detail-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px var(--shadow-medium);
            border-color: var(--primary-gold);
        }
        
        .country-header {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .country-flag {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0.3;
        }
        
        .country-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(11, 77, 44, 0.8), rgba(27, 94, 63, 0.8));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding: 2rem;
        }
        
        .country-name {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .country-tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }
        
        .country-stats-header {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .stat-item-header {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            min-width: 120px;
        }
        
        .stat-number-header {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            display: block;
        }
        
        .stat-label-header {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 0.25rem;
        }
        
        .country-content {
            padding: 3rem;
        }
        
        .country-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            text-align: center;
        }
        
        .country-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .info-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .info-list {
            list-style: none;
            padding: 0;
        }
        
        .info-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            color: var(--text-gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .info-list li:last-child {
            border-bottom: none;
        }
        
        .info-list i {
            color: var(--primary-gold);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .visa-types {
            background: var(--bg-gray);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        
        .visa-types h4 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }
        
        .visa-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .visa-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px var(--shadow-light);
            transition: all 0.3s ease;
        }
        
        .visa-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-medium);
        }
        
        .visa-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        
        .visa-name {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .visa-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.4;
        }
        
        .country-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .requirements-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .requirement-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-gold);
        }
        
        .requirement-title {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .requirement-desc {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }
        
        /* Quick Facts Sidebar */
        .quick-facts {
            background: var(--gradient-green);
            color: var(--text-light);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        
        .quick-facts h4 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .fact-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fact-item:last-child {
            border-bottom: none;
        }
        
        .fact-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .fact-value {
            font-weight: 600;
            color: var(--primary-gold);
        }
       .countries-btn a.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #a1a1a1;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
}
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .country-info-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .country-stats-header {
                gap: 1rem;
            }
            
            .stat-item-header {
                min-width: 100px;
                padding: 0.75rem;
            }
        }
        
        @media (max-width: 768px) {
            .country-name {
                font-size: 2.2rem;
            }
            
            .country-tagline {
                font-size: 1rem;
            }
            
            .country-content {
                padding: 2rem;
            }
            
            .country-header {
                height: 250px;
            }
            
            .country-stats-header {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            
            .stat-item-header {
                width: 100%;
                max-width: 200px;
            }
            
            .visa-grid {
                grid-template-columns: 1fr;
            }
            
            .requirements-grid {
                grid-template-columns: 1fr;
            }
            
            .country-cta {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .country-name {
                font-size: 1.8rem;
            }
            
            .country-content {
                padding: 1.5rem;
            }
            
            .country-header {
                height: 200px;
            }
            
            .visa-types,
            .requirements-section,
            .quick-facts {
                padding: 1.5rem;
            }
            
            .country-description {
                font-size: 1rem;
            }
        }
        
        /* Animation for country cards */
        .country-detail-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .country-detail-card:nth-child(1) { animation-delay: 0.1s; }
        .country-detail-card:nth-child(2) { animation-delay: 0.2s; }
        .country-detail-card:nth-child(3) { animation-delay: 0.3s; }
        .country-detail-card:nth-child(4) { animation-delay: 0.4s; }
        .country-detail-card:nth-child(5) { animation-delay: 0.5s; }
        .country-detail-card:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }