/* Testimonial Section Styles */
.testimonial-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 88px;
    padding: 60px 100px;
    background: rgba(243, 243, 243, 1);
    border-radius: 45px;
    text-align: center;
}

.testimonial-quote {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    font-style: italic;
    color: rgba(25, 26, 35, 1);
    margin-bottom: 30px;
    max-width: 800px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 30px;
    font-weight: 700;
    color: rgba(10, 84, 239, 1);
}

.testimonial-quote::after {
    content: '"';
    font-size: 30px;
    font-weight: 700;
    color: rgba(10, 84, 239, 1);
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
    color: rgba(10, 84, 239, 1);
    margin-top: 20px;
}

/* FAQ Interactive Override Styles */
.faq-item-header {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-item-header:hover {
    color: rgba(10, 84, 239, 1);
}

.faq-item-desc {
    display: none;
    margin-top: 16px;
}

.faq-item-desc.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item-circle {
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item-circle.active {
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: rgba(10, 84, 239, 1);
}

/* Plus sign for closed state */
.faq-item-circle::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: rgba(25, 26, 35, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

.faq-item-circle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: rgba(25, 26, 35, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

.faq-item-circle.active::before,
.faq-item-circle.active::after {
    background-color: white;
}