.faq-item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item__top {
    position: relative;
    margin: 0;
    padding: 3rem 4rem 1.5rem 0;
    font-weight: 500;
    line-height: 130%;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item__top.active {
    color: #007bfb;
}

/* Стили для плюса/минуса */
.faq-item__top .plus {
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item__top .plus::before,
.faq-item__top .plus::after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: all 0.3s ease;
}

.faq-item__top .plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__top .plus::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item__top.active .plus::before {
    background-color: #007bfb;
}

.faq-item__top.active .plus::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

/* Стили для контента */
.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 2rem;
    line-height: 140%;
    color: #637381;
    padding-right: 20px;
}

.faq-item__content p {
    margin-bottom: 15px;
}

.faq-item__content a {
    color: #007bfb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-item__content a:hover {
    color: #0057ff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-item__top {
        font-size: 1.8rem;
        padding: 2rem 3rem 1.5rem 0;
    }
    
    .faq-item__content {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .faq-item__top {
        padding: 1.5rem 2.5rem 1rem 0;
    }
    
    .faq-item__top .plus {
        width: 15px;
        height: 15px;
    }
} 