/* FAQ Specific Styles */

.faq-hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    color: white;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.faq-content {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Notice */
.faq-notice {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-notice p {
    font-size: 1.05rem;
    color: #1e40af;
    margin: 0;
    font-weight: 500;
}

.faq-notice a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.faq-notice a:hover {
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.question-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
}

.faq-toggle {
    font-size: 1.75rem;
    font-weight: 300;
    color: #2563eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background: #eff6ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.faq-answer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.answer-highlight {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
    margin-top: 1rem !important;
}

.warning-note {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    color: #78350f;
    font-weight: 500;
    margin-top: 1rem !important;
}

.contact-methods {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-methods p {
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.contact-methods p:last-child {
    margin-bottom: 0;
}

/* FAQ Help Section */
.faq-help-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.faq-help-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-help-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 0 3rem;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

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

    .faq-wrapper {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .question-icon {
        font-size: 1.25rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-help-section {
        padding: 2rem 1.5rem;
    }

    .faq-help-section h3 {
        font-size: 1.5rem;
    }

    .help-buttons {
        flex-direction: column;
        align-items: center;
    }

    .help-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
