/* =============================================
   MODERN FAQ PAGE STYLES
   ============================================= */

/* Container Styles */
.faq-container {
    max-width: 100%;
    padding: 2rem;
    min-height: 100vh;
}

/* Section Styles */
.faq-section {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.faq-section h5 {
    color: #212529;
    margin: 0;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-section h5:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-section h5 i:first-child {
    color: #4ea5f2;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.faq-section h5 i:last-child {
    color: #6c757d;
    transition: transform 0.3s ease;
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-section.active .accordion-content {
    max-height: 2000px;
}

.faq-section.active h5 i:last-child {
    transform: rotate(180deg);
}

/* FAQ Item Styles */
.faq-item {
    margin: 0;
    padding: 1.5rem;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-item h3 {
    color: #212529;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 3px solid #4ea5f2;
}

.support-section h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
}

.support-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    background: white;
    color: #4ea5f2;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4ea5f2;
    font-size: 1rem;
}

.support-btn:hover {
    background: #4ea5f2;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 165, 242, 0.3);
}

.support-btn i {
    font-size: 1.1rem;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-section h5 {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .support-options {
        flex-direction: column;
        align-items: center;
    }

    .support-btn {
        width: 200px;
        justify-content: center;
    }
}