.page-container .page-description{
    margin-bottom: 50px;
}
.tabs {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 70px auto;
}

/* Кнопки */
.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.tab-btn {
    height: 60px;
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    /* main */
    background: rgba(255, 209, 192, 1);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    /* black */
    color: #2F2F2F;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
}

.tab-btn.active {
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    color: rgba(255, 255, 255, 1);
}

/* Контент */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;

}

.tab-content.active {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq_block{
 
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 50px;
gap: 10px;
background: rgba(255, 255, 255, 0.34);
border-radius: 30px;
}
.faq-question {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--black);
    text-align: left;
    margin: 0 auto 0 0;
}
.answer{
display: flex;
flex-flow: column;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
}
.answer-content p{
    font-family: var(--font-main);
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 30px;
color: #2F2F2F;
    margin: 0 0 15px 0;
    text-align: left;
}
.answer-content p a {
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.answer-content p:last-child{
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .page-container .page-description{
        margin-bottom: 70px;
    }
    .faq_block{
        padding: 30px;
    }
}
@media (max-width: 900px) {

}
@media (max-width: 768px) {
    .page-container .page-description,.tabs{
        margin-bottom: 50px;
    }
}
@media (max-width: 560px) {
    .page-container .page-description,.tabs{
        margin-bottom: 40px;
    }
    .tab-buttons{
        margin-bottom: 15px;
    }
    .tab-btn{
        height: 50px;
        font-size: 16px;
        line-height: 20px;
        padding: 0 20px;
    }
    .faq_block{
        padding: 15px;
        gap: 5px;
        border-radius: 20px;
    }
    .faq-question{
        font-size: 18px;
        line-height: 24px;
    }
    .answer-content p{
        font-size: 15px;
        line-height: 24px;
    }
}