
/* FAQ Section */
.faq-section {
    min-height: 100vh;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.faq-container {
    flex: 0 0 100%;
    max-width: 800px;
    min-height: 100vh;
    background: #FFF200;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    overflow-y: auto;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
}

.faq-header {
    background: #ffffff;
    color: #333;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    margin-top: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq-header.header-hidden {
    transform: translateY(-100%);
}

.faq-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.faq-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 1;
}

.faq-subtitle {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}

.faq-content {
    padding: 25px;
    position: relative;
    min-height: 500px;
    background: #ffffff;
    overflow-y: auto;
    margin-bottom: 0;
    text-align: left;
}

.faq-single-box {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.faq-item {
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease;
    padding: 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background: none;
}

.faq-item h3 {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.faq-answer {
    display: block;
    padding: 25px 30px;
    background: #fff9ed;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-top: 8px;
    position: relative;
    backdrop-filter: blur(5px);
}

.faq-answer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Prompt', sans-serif;
}

.faq-answer p strong {
    color: #333;
    font-weight: 600;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
    background: transparent;
    border: none;
    padding: 0;
}

.faq-answer li {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ffc107;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #ffb300;
    border-bottom-color: #ffb300;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.document-types {
    margin-top: 20px;
}

.document-type {
    margin-bottom: 20px;
    padding: 15px;
    background: transparent;
    border-radius: 10px;
    border: none;
}

.document-type h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.document-type p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hide loading bar on mobile */
    .loading-bar {
        display: none;
    }
    
    /* FAQ Container Mobile */
    .faq-container {
        padding: 10px;
    }
    
    /* FAQ Header Mobile */
    .faq-header {
        margin-bottom: 10px;
        padding: 20px;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }

    .faq-subtitle {
        font-size: 1.2rem;
    }

    /* FAQ Content Mobile */
    .faq-content {
        padding: 20px;
    }

    .faq-item {
        margin-bottom: 30px;
    }

    .faq-item h3 {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .faq-answer {
        padding: 20px 25px;
        margin-top: 6px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .faq-answer li {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .document-type {
        padding: 12px;
        margin-bottom: 15px;
    }

    .document-type h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .document-type p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .faq-link {
        font-size: 0.85rem;
    }

}

@media (max-width: 480px) {
    /* FAQ Container Small Mobile */
    .faq-container {
        padding: 8px;
    }
    
    /* FAQ Header Small Mobile */
    .faq-header {
        margin-bottom: 8px;
        padding: 15px;
    }
    
    .faq-title {
        font-size: 1.4rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    /* FAQ Content Small Mobile */
    .faq-content {
        padding: 15px;
    }

    .faq-item {
        margin-bottom: 25px;
    }

    .faq-item h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .faq-answer {
        padding: 15px 20px;
        margin-top: 5px;
    }

    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .faq-answer li {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .document-type {
        padding: 10px;
        margin-bottom: 12px;
    }

    .document-type h4 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .document-type p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .faq-link {
        font-size: 0.8rem;
    }

}
