/* FAQs Block */
.acv-faqs-block {
    width: 100%;
    padding: 80px 190px;
    background: #ffffff;
    margin: 0;
    border-top: 1px solid #e8e8e8;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.acv-faqs-inner {
    width: 100%;
    max-width: 1600px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin: 0 auto;
}

.acv-faqs-sidebar {
    flex: 0 0 220px;
}

.acv-faqs-heading {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 15px 0;
}

.acv-faqs-description {
    color: var(--acvalve-body-text-color, #2c3e50);
    font-size: 0.95rem;
    line-height: 1.6;
}

.acv-faqs-accordion {
    flex: 1;
    border-top: 1px solid rgba(6, 57, 84, 0.12);
}

.acv-faq-item {
    border-bottom: 1px solid rgba(6, 57, 84, 0.12);
    padding: 20px 0;
}

.acv-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--acvalve-heading-color, #0d4c5f);
    text-align: left;
    cursor: pointer;
}

.acv-faq-question:focus-visible {
    outline: 2px solid var(--acvalve-primary-color, #0d4c5f);
    outline-offset: 3px;
}

.acv-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--acvalve-primary-color, #0d4c5f);
    transition: transform 0.2s ease;
}

.acv-faq-toggle::before {
    content: '+';
    line-height: 1;
}

.acv-faq-item.is-open .acv-faq-toggle::before {
    content: '−';
}

.acv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--acvalve-body-text-color, #2c3e50);
    font-size: 0.95rem;
    line-height: 1.6;
}

.acv-faq-item.is-open .acv-faq-answer {
    transition: max-height 0.5s ease-in;
}

.acv-faq-answer-inner {
    padding-top: 15px;
}

@media (max-width: 1024px) {
    .acv-faqs-block {
        padding: 50px 40px;
    }

    .acv-faqs-inner {
        flex-direction: column;
        gap: 30px;
    }

    .acv-faqs-sidebar {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .acv-faqs-block {
        padding: 40px 20px;
    }
}