.questions__title {
    text-align: center;
}

.questions__subtitle {
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.questions__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.questions__item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(153, 153, 153, 0.16) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    margin-top: 20px;
}

.questions__item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.questions__header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.questions__header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.questions__item-title {
    margin: 0;
}

.questions__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.questions__item.active .questions__icon {
    transform: rotate(45deg);
}

.questions__content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.questions__item.active .questions__content {
    padding: 10px 30px 20px;
    max-height: 1000px;
}

.questions__text {
    line-height: 1.6;
}

.questions__list {
    padding-left: 20px;
}

.questions__list-item {
    line-height: 1.6;
}

/* Адаптивность для десктопов с меньшим разрешением */
@media (max-width: 1250px) {
    .questions__accordion {
        padding: 0 20px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .questions {
        padding: 60px 0;
    }
    
    .questions__subtitle {
        margin-top: 10px;
    }

    .questions__item {
        margin-top: 10px;
    }
    
    .questions__header {
        padding: 20px 25px;
    }
    
    .questions__item.active .questions__content {
        padding: 10px 25px 20px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .questions {
        padding: 40px 0;
    }
    
    .questions__title {
        padding: 0 20px;
    }
    
    .questions__subtitle {
        padding: 0 20px;
    }
    
    
    .questions__header {
        padding: 10px 20px;
    }
    
    .questions__item.active .questions__content {
        padding: 10px 20px 10px;
    }
} 