/**
 * Visa Country Pages — Shared Stylesheet
 * Location: assets/css/visa-pages.css
 * Scope: single-visa_country.php + archive-visa_country.php
 * Enqueued: via functions.php on is_singular('visa_country') || is_post_type_archive('visa_country')
 */

/* ============================================
   SHARED COMPONENT FALLBACKS
   These ensure visa pages render correctly even
   if homepage-new.css fails to load.
   ============================================ */

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section base */
.section {
    padding: 80px 0;
}

.section-light {
    background: #f8fafc;
}

.section-dark {
    background: #0f172a;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.4;
    font-family: inherit;
}

.btn-primary {
    background: #FF6B35;
    color: #fff;
    border-color: #FF6B35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border-color: #FF6B35;
}

.btn-outline:hover {
    background: #FF6B35;
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Country Cards Grid (Related Countries) */
.country-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.country-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.country-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #FF6B35;
}

.country-card-flag {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8fafc;
}

.country-card-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.country-card:hover .country-card-flag img {
    transform: scale(1.05);
}

.country-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.country-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.country-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px;
    flex: 1;
}

.country-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #6b7280;
}

.country-card-price {
    font-weight: 700;
    color: #FF6B35;
    font-size: 1rem;
}

/* Section header (used in related countries) */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Header / Nav defensive fixes */
.site-header {
    position: relative;
    z-index: 100;
}

/* Footer defensive fixes */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #FF6B35;
}

/* ============================================
   1. HERO BANNER
   ============================================ */
.country-hero {
    position: relative;
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    overflow: hidden;
    text-align: center;
}

.country-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.country-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.country-flag-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.country-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.country-hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ============================================
   2. QUICK INFO BAR (Floating Card)
   ============================================ */
.info-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 20px;
}

.info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-bar-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.info-bar-item:last-child {
    border-right: none;
}

.info-bar-item:hover {
    background: #fafbfc;
}

.info-bar-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    font-weight: 600;
}

.info-bar-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
}

.info-bar-price .info-bar-value {
    color: #FF6B35;
    font-size: 1.3rem;
}

/* ============================================
   3. MAIN CONTENT GRID
   ============================================ */
.country-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.country-content-main {
    min-width: 0;
}

.country-content-main > div {
    margin-bottom: 48px;
}

.country-content-main > div:last-child {
    margin-bottom: 0;
}

.country-content-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.country-content-main h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FF6B35;
}

.country-content-main p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 16px;
}

.country-content-main p:last-child {
    margin-bottom: 0;
}

/* ============================================
   4. ELIGIBILITY SECTION
   ============================================ */
.eligibility-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px 28px;
    border-left: 4px solid #FF6B35;
}

.eligibility-content p {
    margin: 0 0 12px;
}

.eligibility-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   5. REQUIRED DOCUMENTS
   ============================================ */
.documents-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.document-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.08);
    transform: translateY(-1px);
}

.document-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-info {
    flex: 1;
    min-width: 0;
}

.document-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.document-desc {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   6. HOW TO APPLY TIMELINE
   ============================================ */
.country-timeline {
    position: relative;
    padding-left: 32px;
}

.country-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF6B35, #ff9f70);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    padding-bottom: 32px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -32px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #FF6B35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(255, 107, 53, 0.2);
}

.timeline-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px;
}

.timeline-step p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* ============================================
   7. PRICING TABLE
   ============================================ */
.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #FF6B35;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: #FF6B35;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: #FF6B35;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-bottom-left-radius: 12px;
}

.pricing-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0 0 8px;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-card .price-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 20px;
}

.pricing-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ============================================
   8. FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-item.active {
    border-color: #FF6B35;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #FF6B35;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #9ca3af;
    transition: background 0.2s ease, transform 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #FF6B35;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-inner p {
    margin: 0 0 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* No-JS fallback: show all answers */
.no-js .faq-answer,
html.no-js .faq-answer {
    max-height: none !important;
}

.no-js .faq-icon::after,
html.no-js .faq-icon::after {
    display: none;
}

/* ============================================
   9. STICKY SIDEBAR & CTA CARD
   ============================================ */
.country-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.country-cta-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.country-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #ff9f70);
}

.country-cta-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.country-cta-card > p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}

.cta-price {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
}

.cta-price-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1.2;
}

.cta-price-value .woocommerce-Price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
}

.cta-price-value .woocommerce-Price-currencySymbol {
    font-size: 1.4rem;
    font-weight: 600;
}

.country-cta-card .btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.cta-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

.cta-features li svg {
    flex-shrink: 0;
}

/* Trust badges in sidebar */
.cta-trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.cta-trust-badge svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ============================================
   10. RELATED COUNTRIES
   ============================================ */
.related-countries-section {
    background: #f8fafc;
    padding: 80px 0;
}

.related-countries-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.related-countries-section .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 8px;
}

.related-countries-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* ============================================
   11. BREADCRUMB
   ============================================ */
.country-breadcrumb {
    padding: 16px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.country-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.country-breadcrumb a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.country-breadcrumb a:hover {
    color: #FF6B35;
}

.country-breadcrumb .sep {
    color: #d1d5db;
}

.country-breadcrumb .current {
    color: #1f2937;
    font-weight: 600;
}

/* ============================================
   12. RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
    .country-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .country-sidebar {
        position: relative;
        top: auto;
        order: -1;
    }

    .country-cta-card {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
    }

    .country-cta-card h3,
    .country-cta-card > p {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .cta-price {
        margin-bottom: 0;
    }

    .country-cta-card .btn-full {
        margin-bottom: 0;
        width: auto;
        padding: 12px 32px;
    }

    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-trust-badges {
        grid-column: 1 / -1;
        margin-top: 0;
        padding-top: 16px;
    }

    .pricing-table {
        grid-template-columns: 1fr 1fr;
    }

    .country-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
    .country-hero {
        padding: 60px 0 100px;
    }

    .country-flag-large {
        width: 90px;
        height: 90px;
    }

    .country-hero-meta {
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 16px;
    }

    .info-bar-section {
        margin-top: -40px;
        padding: 0 16px;
    }

    .info-bar {
        grid-template-columns: 1fr 1fr;
    }

    .info-bar-item {
        padding: 20px 12px;
        border-right: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .info-bar-item:nth-child(2n) {
        border-right: none;
    }

    .info-bar-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .country-content-grid {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 24px;
    }

    .country-content-main h2 {
        font-size: 1.4rem;
    }

    .document-item {
        padding: 16px;
    }

    .document-icon {
        width: 36px;
        height: 36px;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .country-cta-card {
        display: block;
        padding: 24px;
    }

    .country-cta-card .btn-full {
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
    }

    .cta-price-value {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
    }

    .related-countries-section {
        padding: 48px 0;
    }

    .related-countries-section .section-title {
        font-size: 1.5rem;
    }

    .country-cards-grid {
        grid-template-columns: 1fr;
    }

    .country-card-flag {
        height: 180px;
    }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
    .info-bar {
        grid-template-columns: 1fr;
    }

    .info-bar-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 16px;
    }

    .info-bar-item:last-child {
        border-bottom: none;
    }

    .country-hero-title {
        font-size: 1.75rem;
    }

    .country-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ============================================
   13. PRINT STYLES
   ============================================ */
@media print {
    .country-hero {
        padding: 30px 0;
        background: #fff !important;
        color: #000;
    }

    .country-hero-title,
    .country-hero-subtitle,
    .meta-item {
        color: #000 !important;
        text-shadow: none;
    }

    .country-sidebar,
    .country-breadcrumb,
    .faq-icon::after {
        display: none;
    }

    .faq-answer {
        max-height: none !important;
    }

    .document-item {
        break-inside: avoid;
    }
}