.faq {
    display: flex;
    flex-direction: column;
    background: #F0F1F5 !important;
    border-radius: 20px;
    margin: 0px;
    padding: 60px;
    border-radius: 0px ;
}
.faq__section{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin: 0px;
    margin-left: 0px;
    margin-right: 0px;
}
        
.faq__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 85px;
    align-items: flex-start;
}
.faq__question-up{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    color: #0A0F15;
}
        

.faq__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    height: 230px;;
}
        
.faq__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 10px;

}
        
        
.faq__question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}
        
        
.faq__question-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color:#0A0F15;
}
.faq__question-text-bottom{
    border-bottom: var(--border);
}
        
.faq__toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
        
.faq__item.active .faq__toggle {
    transform: rotate(180deg);
}
.faq__item.active .faq__toggle  rect {
    fill: #0A0F15;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}
        
.faq__answer-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #3c414b;

}

.faq__contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    width: 100%;
    height: 464px;
    background: #FFFFFF;
    border-radius: 20px;

    max-width: 550px;

}
        
.faq__contacts-title {
    width: 544px;
    height: 60px;
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    color: #0A0F15;
    margin-bottom: 0px;

}
        
.faq__contacts-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 60px;
    color: #657084;


}
.faq__blocks{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}
.faq__block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    max-width: 610px;
    padding-bottom: 16px;
    min-height: 140px;
}
        
.faq__contacts-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;

}
        
.faq__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 152px;
}
        
.faq__contact-icon {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;

    color: #657084;


}
        
.faq__contact-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #0A0F15;
}
.faq__contact-text-red { 
    color: #BC1915;
}
        
