.faq-container-422 {
    width: 100%;
    background-color: #f8fafc; /* Soft off-white background */
    padding: 30px;
    border-radius: 16px;
    box-sizing: border-box;
}

.faq-item-422 {
    background-color: #ffffff; /* Pure white cards */
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-422:last-child {
    margin-bottom: 0;
}

.faq-question-btn-422 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    outline: none;
}

.faq-question-text-422 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    padding-right: 20px;
    transition: color 0.3s ease;
}

/* Icon Setup */
.faq-icon-422 {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Elegant rotation bounce */
}

.faq-icon-422 svg {
    width: 16px;
    height: 16px;
    fill: #64748b;
    transition: fill 0.3s ease;
}

/* Active State */
.faq-item-422.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-item-422.active .faq-icon-422 {
    /* Rotate 45deg to turn plus into an X (which functions as a minus/close visually) */
    transform: rotate(45deg);
}

/* The color of text and icon in active state is handled via Elementor dynamic CSS, 
   but defaults to #0f172a (Navy Blue) */

/* Answer Panel (Slide Animation via JS & max-height) */
.faq-answer-422 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth ease-in-out */
}

.faq-answer-inner-422 {
    padding: 0 25px 25px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item-422.active .faq-answer-inner-422 {
    border-top-color: #f1f5f9;
    padding-top: 15px; /* Adds space after the line */
}

/* Reset max-height when active (value set by JS for smooth anim) */
