/* FAQs Block */
.faqs-block {
    padding: 70px 0;
    background: var(--white);
}

.faqs-block__header {
    text-align: left;
    margin-bottom: 60px;
}

.faqs-block__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faqs-block__content {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

.faqs-block__content p:last-child {
    margin-bottom: 0;
}

.faqs-block__accordion {
}

.faq-item {
    border-bottom: 1px solid var(--grey);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item__question:hover .faq-item__question-text {
    color: var(--primary);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item__icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    background: var(--accent-red);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon i {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer-content {
    padding: 0 0 20px 0;
    color: var(--muted);
    line-height: 1.6;
}

.faq-item__answer-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faqs-block {
        padding: 50px 0;
    }

    .faqs-block__header {
        margin-bottom: 40px;
    }

    .faqs-block__title {
        font-size: 2rem;
    }

    .faq-item__question-text {
        font-size: 1rem;
    }

    .faq-item__answer-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faqs-block {
        padding: 40px 0;
    }

    .faqs-block__title {
        font-size: 1.8rem;
    }

    .faqs-block__content {
        font-size: 1rem;
    }

    .faq-item__question {
        padding: 16px 0;
    }

    .faq-item__question-text {
        font-size: 0.95rem;
        padding-right: 12px;
    }

    .faq-item__icon {
        width: 28px;
        height: 28px;
    }

    .faq-item__icon i {
        font-size: 12px;
    }

    .faq-item__answer-content {
        padding: 0 0 16px;
        font-size: 0.9rem;
    }
}

.faqs-block__empty {
    text-align: center;
    padding: 40px 20px;
    background: var(--grey-light);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.faqs-block__empty p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faqs-block {
        padding: 50px 0;
    }
    
    .faqs-block__header {
        margin-bottom: 40px;
    }
    
    .faqs-block__title {
        font-size: 2rem;
    }
    
    .faq-item__question {
        padding: 16px 0;
    }
    
    .faq-item__question-text {
        font-size: 1rem;
    }
    
    .faq-item__icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-item__icon i {
        font-size: 12px;
    }
}
