/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 20px auto 40px;
    text-align: left;
}

.faq-trigger {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.faq-trigger:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.faq-trigger i {
    transition: transform 0.3s ease;
}

.faq-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    margin-top: 20px;
    background: #252525;
    border-radius: 12px;
    border: 1px solid #333;
    padding: 20px;
    animation: slideDownFade 0.3s ease-out;
}

.faq-content.show {
    display: block;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

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

.faq-question {
    color: #fff;
    font-family: 'Pirata One', cursive;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: normal;
}

.faq-answer {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer a {
    color: #dc3545;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #c82333;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}