body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
}

:root {
    --blue: #003594;
    --gold: #FFD100;

.navbar {
    background: var(--blue) !important;
    padding: 1rem 0;
}

.navbar-brand,
.nav-link,
.navbar-text {
    color: white !important;
    font-weight: 700;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 7px;
    border-radius: 50%;
    font-size: 19px;
    color: white !important;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-6px) scale(1.18);
    box-shadow: 0 14px 28px rgba(0,0,0,0.4);
}

.x { background: #000000; }
.fb { background: #1877F2; }
.reddit { background: #FF4500; }
.ig { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }

.faq-header {
   
    padding: 40px 20px 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
   
    opacity: 0.12;
    z-index: 0;
}

.faq-header .container {
    position: relative;
    z-index: 1;
}

.faq-header h1 {
    font-weight: 600;
        letter-spacing: -1px;
    color:#003594;
}

.faq-header .lead {
    font-size: 1.2rem;
    font-weight: 400;
     
    color:#003594;
}

.faq-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
}

.badge-conf {
    background: var(--gold);
    color: var(--blue);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 767px) {
    .navbar .container-fluid {
        flex-wrap: wrap;
    }
    
    .navbar .d-flex.gap-3 {
        flex-wrap: wrap;
        justify-content: center !important;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .navbar .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .mobile-social {
        background: #00235b;
        padding: 1rem 0;
        text-align: center;
    }
    
    .mobile-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        margin: 0 12px;
        border-radius: 50%;
        font-size: 26px;
        color: white !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        transition: all 0.35s ease;
    }
    
    .mobile-social a:hover {
        transform: translateY(-10px) scale(1.15);
        box-shadow: 0 16px 32px rgba(0,0,0,0.5);
    }
}