/* ===== FAQ PAGE CSS ===== */

/* General Section Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Hero Heading */
section.text-center h1 {
    color: #d32f2f;
    font-weight: 700;
}

section.text-center p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    color: #333;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.accordion-button:hover,
.accordion-button:focus {
    color: #d32f2f;
    background-color: #fef0f0;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.1);
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #d32f2f;
}

.accordion-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: #fff;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

/* Support Info Section */
section .btn-danger {
    font-weight: 600;
    transition: all 0.3s ease;
}

section .btn-danger:hover {
    transform: scale(1.05);
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section h1 {
        font-size: 1.75rem;
    }
}
