.faq-25fa-wrapper {
    position: relative;
    background-color: #FFFFFF;
    padding: 40px;
    overflow: hidden;
    border-radius: 24px;
}

.faq-25fa-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230056b3" fill-opacity="1" d="M0,224L60,202.7C120,181,240,139,360,133.3C480,128,600,160,720,186.7C840,213,960,235,1080,213.3C1200,192,1320,128,1380,96L1440,64L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') bottom center / cover no-repeat;
    z-index: 0;
}

.faq-25fa-heading-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.faq-25fa-main-title {
    margin: 0 0 10px 0;
    color: #111111;
}

.faq-25fa-subtitle {
    margin: 0;
    color: #444444;
}

.faq-25fa-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .faq-25fa-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-25fa-item {
    background: #fff;
    border: 1px solid #111111;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-25fa-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #111111;
    outline: none;
}

.faq-25fa-question {
    font-weight: 600;
    color: inherit;
    margin-right: 16px;
    font-size: 1.1rem;
}

.faq-25fa-toggle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
    border: 1px solid #111111;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-25fa-toggle::before,
.faq-25fa-toggle::after {
    content: '';
    position: absolute;
    background-color: #111111;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-25fa-toggle::before {
    width: 10px;
    height: 1.5px;
}

.faq-25fa-toggle::after {
    width: 1.5px;
    height: 10px;
}

.faq-25fa-item.is-active .faq-25fa-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-25fa-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-25fa-answer-inner {
    padding: 0 24px 24px 24px;
    color: #444444;
    line-height: 1.6;
}

.faq-25fa-header:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.5);
}