.section-title-faq{
    text-align: center;
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    position: relative;
}

.section-title-faq::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #7c3aed;
    border-radius: 2px;
}

.faq-section {
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px 5px;
}

.faq-item {
    background: #F3E8FF;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-title {
    padding: 20px;
    font-size: 18px;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    color: #000000;
}

.faq-title:hover {
    background-color: rgba(255,140,0,0.1);
}

.faq-title::after {
    content: '+';
    font-size: 24px;
    color: #7C3AED;
}

.faq-item.active .faq-title::after {
    content: '-';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    text-align: left;
    font-size: 16px;
}

.faq-content p {
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.faq-content ul {
    margin: 0;
    padding-left: 40px;
}

.faq-content li {
    margin-bottom: 5px;

}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px;
}

.telegram-download {
    color: #7C3AED;
    text-decoration: underline;
}

.telegram-download:hover {
    text-decoration: none;
}