.faq-container-ba8f311d {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
}

.faq-title-ba8f311d {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.faq-description-ba8f311d {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px auto;
    line-height: 1.6;
}

.faq-accordion-ba8f311d {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-ba8f311d {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-ba8f311d:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.faq-item-ba8f311d.active {
    border-color: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.faq-trigger-ba8f311d {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 24px;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question-ba8f311d {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    padding-right: 16px;
    transition: color 0.3s ease;
}

.faq-icon-ba8f311d {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-ba8f311d svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-ba8f311d.active .faq-icon-ba8f311d {
    background-color: #0f172a;
    color: #ffffff;
}

.faq-item-ba8f311d.active .faq-icon-ba8f311d svg {
    transform: rotate(135deg);
}

.faq-content-ba8f311d {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-ba8f311d {
    padding: 0 24px 24px 24px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item-ba8f311d.active .faq-answer-ba8f311d {
    opacity: 1;
    transform: translateY(0);
}
