        /* Country Detail Layout */
        .country-detail {
            padding: 0;
            max-width: 100%;
            margin: 0 auto;
        }
        
        /* Breadcrumb */
        .breadcrumb-wrapper {
            padding: 20px 40px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
        }
        
        .breadcrumb-wrapper .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .breadcrumb-wrapper .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-wrapper .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--accent-gold-light);
        }
        
        /* Banner Section */
        .country-banner {
            position: relative;
            width: 100%;
            min-height: 400px;
            max-height: 600px;
            overflow: hidden;
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .country-banner .banner-image {
            width: 100%;
            height: 100%;
            min-height: 400px;
            max-height: 600px;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .country-banner .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(10, 14, 23, 0.85) 0%,
                rgba(10, 14, 23, 0.4) 50%,
                rgba(10, 14, 23, 0.7) 100%
            );
            z-index: 1;
        }
        
        .country-banner .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .country-banner .banner-content .banner-flag {
            display: inline-block;
            font-size: 48px;
            color: var(--accent-gold);
            margin-bottom: 15px;
            background: rgba(240, 193, 61, 0.1);
            padding: 15px 20px;
            border-radius: 50%;
            border: 2px solid rgba(240, 193, 61, 0.2);
        }
        
        .country-banner .banner-content .banner-badge {
            display: inline-block;
            background: rgba(240, 193, 61, 0.15);
            color: var(--accent-gold);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(240, 193, 61, 0.2);
        }
        
        .country-banner .banner-content h1 {
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .country-banner .banner-content h1 .highlight {
            color: var(--accent-gold);
        }
        
        .country-banner .banner-content .banner-subtext {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
        }
        
        .country-banner .banner-content .banner-cta {
            margin-top: 30px;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .country-banner .banner-content .banner-cta .btn-banner {
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .country-banner .banner-content .banner-cta .btn-banner-primary {
            background: var(--accent-gold);
            color: #000000;
        }
        
        .country-banner .banner-content .banner-cta .btn-banner-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(240, 193, 61, 0.3);
        }
        
        .country-banner .banner-content .banner-cta .btn-banner-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .country-banner .banner-content .banner-cta .btn-banner-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* No Banner Fallback */
        .country-banner.no-banner {
            min-height: 200px;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
        }
        
        .country-banner.no-banner .banner-content h1 {
            font-size: 40px;
            color: var(--text-primary);
        }
        
        .country-banner.no-banner .banner-content .banner-subtext {
            color: var(--text-secondary);
        }
        
        /* Content Section */
        .country-content-wrapper {
            /* padding: 60px 20px; */
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .country-content-wrapper .country-content {
            /* background: var(--bg-card); */
            border: 1px solid var(--border-color);
            /* border-radius: 16px; */
            padding: 40px;
        }
        
        .country-content-wrapper .country-content .content-wrapper {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .country-content-wrapper .country-content .content-wrapper h2,
        .country-content-wrapper .country-content .content-wrapper h3,
        .country-content-wrapper .country-content .content-wrapper h4 {
            color: var(--text-primary);
            margin-top: 24px;
            margin-bottom: 12px;
        }
        
        .country-content-wrapper .country-content .content-wrapper p {
            margin-bottom: 16px;
        }
        
        .country-content-wrapper .country-content .content-wrapper ul,
        .country-content-wrapper .country-content .content-wrapper ol {
            padding-left: 24px;
            margin-bottom: 16px;
        }
        
        .country-content-wrapper .country-content .content-wrapper li {
            margin-bottom: 8px;
        }
        
        .country-content-wrapper .country-content .content-wrapper img {
            max-width: 100%;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .country-content-wrapper .country-content .content-wrapper blockquote {
            border-left: 4px solid var(--accent-gold);
            padding: 16px 24px;
            margin: 20px 0;
            background: var(--bg-input);
            border-radius: 0 8px 8px 0;
            color: var(--text-primary);
        }
        
        /* Country Image (if no banner) */
        .country-content-wrapper .country-image {
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .country-content-wrapper .country-image img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Country Cards Section */
.country-card-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin: 15px 0;
    border-bottom: 1px solid;
    padding: 5px;
}

.country-card-content {
    flex: 1;
    min-width: 300px;
    border: none;
}

.country-card-content h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.country-card-content p {
    margin-bottom: 0 !important;
    line-height: 1.3;
}

.country-card-content .btn-view-more {
    display: inline-block;
    padding: 8px 16px;
    background: #f5b400;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.country-card-content .btn-view-more:hover {
    background: #e0a300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 180, 0, 0.3);
}

.country-card-image {
    flex: 0 0 220px;
    max-width: 100%;
}

.country-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.country-card-image img:hover {
    transform: scale(1.02);
}

/* Responsive Design - Tablet */
@media screen and (max-width: 768px) {
    .country-card-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
        margin: 20px 0;
    }

    .country-card-content {
        min-width: 100%;
        order: 2;
    }

    .country-card-content h2 {
        font-size: 1.6rem;
    }

    .country-card-image {
        flex: 0 0 100%;
        width: 100%;
        order: 1;
    }

    .country-card-image img {
        max-height: 250px;
        object-fit: cover;
        width: 100%;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 480px) {
    .country-card-section {
        margin: 15px 0;
        gap: 15px;
        padding: 12px;
    }

    .country-card-content {
        min-width: 100%;
    }

    .country-card-content h2 {
        font-size: 1.3rem;
    }

    .country-card-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .country-card-content .btn-view-more {
        padding: 6px 14px;
        font-size: 0.9rem;
    }

    .country-card-image {
        flex: 0 0 100%;
    }

    .country-card-image img {
        max-height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }
}

/* For very small screens */
@media screen and (max-width: 320px) {
    .country-card-content h2 {
        font-size: 1.1rem;
    }

    .country-card-content p {
        font-size: 0.85rem;
    }

    .country-card-image img {
        max-height: 150px;
    }
}

        /* Responsive */
        @media (max-width: 992px) {
            .country-banner .banner-content h1 {
                font-size: 36px;
            }
            .country-banner .banner-content .banner-subtext {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .breadcrumb-wrapper {
                padding: 15px 20px;
            }
            
            .country-banner {
                min-height: 300px;
                max-height: 500px;
            }
            
            .country-banner .banner-image {
                min-height: 300px;
                max-height: 500px;
            }
            
            .country-banner .banner-content h1 {
                font-size: 28px;
            }
            
            .country-banner .banner-content .banner-subtext {
                font-size: 16px;
            }
            
            .country-banner .banner-content .banner-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .country-content-wrapper {
                padding: 30px 15px;
            }
            
            .country-content-wrapper .country-content {
                padding: 20px;
            }
            
            .country-banner.no-banner .banner-content h1 {
                font-size: 28px;
            }
            
            .country-banner .banner-content .banner-flag {
                font-size: 36px;
                padding: 12px 16px;
            }
        }
        
        @media (max-width: 480px) {
            .country-banner {
                min-height: 250px;
                max-height: 400px;
            }
            
            .country-banner .banner-image {
                min-height: 250px;
                max-height: 400px;
            }
            
            .country-banner .banner-content h1 {
                font-size: 24px;
            }
            
            .country-banner .banner-content .banner-subtext {
                font-size: 14px;
            }
            
            .country-banner .banner-content .banner-badge {
                font-size: 10px;
                padding: 4px 14px;
            }
            
            .country-banner .banner-content .banner-flag {
                font-size: 28px;
                padding: 10px 14px;
            }
        }