/* --- FAQ Block Styles --- */
.faq-block-96 {
    background: #222;
    border: 2px solid #444;
    max-width: 1400px;
    margin: 8px 8px;
    width: 96%;
    border-radius: 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
}


.faq-block {
    background: #222;
    border: 2px solid #444;
    max-width: 1400px;

    width: 100%;
    border-radius: 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
}

.faq-block-title {
    font-size: var(--font-size-large);
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.faq-item {
    width: 100%;
    max-width: 800px;
    border-bottom: 1px solid #333;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-default);
    font-size: var(--font-size-standard);
    font-weight: 500;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #fff;
}

.faq-question span {
    padding-right: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

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

.faq-answer {
    color: #bbb;
    line-height: 1.6;
    overflow: hidden;
    max-height: 0;
    font-size: var(--font-size-standard);
    transition: max-height 0.3s ease-out, padding-bottom 0.3s ease-out;
    padding-bottom: 0;
}

.faq-answer p {
    margin: 0;
}

.faq-answer.open {
    padding-bottom: 20px;
    max-height: 500px; /* Adjust if answers are longer */
    transition: max-height 0.4s ease-in, padding-bottom 0.4s ease-in;
}