.section_main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section_main h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--title);
  margin-bottom: 20px;
}

.section_main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 10px;
}
.section_main table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-comment-faq-block);
  border-radius: 16px;
  color: var(--table-faq-comment-text-color);
}

.section_main table p {
  margin: 0;
}

.section_main th {
  padding: 10px;
  text-align: left;
}

.section_main td {
  padding: 10px;
  text-align: left;
}

.section_img {
  border-radius: var(--br-radius);
  box-shadow: var(--shadow-bg);
  width: 100%;
  max-height: 300px;
}

.section_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}

.section_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--secondary-descr);
}

.section_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_link {
  border-radius: var(--br-radius);
  padding: 16px 30px;
  background: var(--primary-bg-btn);
  color: var(--primary-text-btn);
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
}

@media (max-width: 568px) {
  .section_main {
    gap: 5px;
  }

  .section_title {
    font-size: 20px;
  }

  .section_text {
    font-size: 14px;
  }

  .section_link {
    padding: 12px 20px;

    font-size: 14px;
  }
}
