
.faq-section {
    padding: 60px 0;
    font-family: 'Arial', sans-serif; /* Замените на шрифт вашего сайта */
    color: #333; /* Основной цвет текста */
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a6fb5; /* Цвет акцентов вашего сайта */
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.5;
}

.faq-accordion {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 30px 20px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1a6fb5; /* Цвет акцентов при наведении */
}

.faq-icon {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #1a6fb5; /* Цвет плюсика */
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 0 20px 0;
    line-height: 1.6;
}

.faq-answer-content p,
.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 15px;
}

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