.faq-wrapper {
    max-width: 720px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(45, 147, 214, 0.2);
    border-radius: 0.9rem;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: rgba(45, 147, 214, 0.4);
    box-shadow: 0 4px 16px rgba(45, 147, 214, 0.1);
}

.faq-item.open {
    border-color: #2d93d6;
    box-shadow: 0 4px 16px rgba(45, 147, 214, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    gap: 1rem;
}

.faq-arrow {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: #2d93d6;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1rem;
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 0 1rem;
    }
    .faq-question {
        font-size: 0.85rem;
    }
}