.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.faq-dot {
    width: 10px;
    height: 10px;
    background: #ff6f3c;
    border-radius: 50%;
    display: inline-block;
}

.faq-title {
    font-size: 1.1rem;
    color: #a4a0a0;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.1;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0;
    transition: box-shadow 0.2s;
    border: 1px solid #f3f3f3;
    cursor: pointer;
}

.faq-item.active {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-color: #ff6f3c;
    
}

.faq-question {
    font-size: 1.35rem;
    font-weight: 500;
    color: #222;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    transition: background 0.2s;
}

.faq-item.active .faq-question {
    background: #fff7f2;
}

.faq-toggle-icon {
    font-size: 2rem;
    color: #ff6f3c;
    margin-left: 16px;
    font-weight: 700;
    user-select: none;
    transition: color 0.2s;
}

.faq-answer {
    display: none;
    font-size: 1.08rem;
    color: #444;
    padding: 0 32px 24px 32px;
    line-height: 1.6;
    border-radius: 0 0 18px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 900px) {
    .faq-main-title {
        font-size: 2.1rem;
    }
    .faq-question {
        font-size: 1.1rem;
        padding: 18px 16px;
    }
    .faq-answer {
        font-size: 1rem;
        padding: 0 16px 16px 16px;
    }
    .faq-list {
        gap: 12px;
    }
}
