/* === Кнопки общего назначения === */
.btn {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: normal;
  padding: 8px 15px;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
}

/* === Кнопка "Регистрация" === */
.header__button-register {
  background-color: #1f2841;
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
  cursor: pointer;
  transition: all 0.1s;
}

.header__button-register:hover {
  background-color: #2a2f4b;
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
}

/* === Кнопка "Войти" === */
.header__button-login {
  background-color: #1f2841;
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  cursor: pointer;
  transition: all 0.1s;
}

.header__button-login:hover {
  background-color: #2a2f4b;
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}

/* === Ссылки в навигации === */
.header__nav ul li a {
  font-size: 14px;
  transition: all 0.3s;
}

.header__nav ul li a:hover {
  color: rgb(9, 109, 255);
}

/* === Таблица === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 1rem;
  background-color: #131A2D;
}

/* Заголовки таблицы */
thead th {
  background-color: #131A2D;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #dddddd4c;
  white-space: nowrap;
}

/* Ячейки таблицы */
td {
  padding: 12px 15px;
  border: 1px solid #dddddd4c;
  white-space: nowrap;
}

/* Зебра */
tbody tr:nth-child(even) {
  background-color: #131A2D;
}

/* === Адаптивность таблицы === */
@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead, tbody, th, td, tr {
    white-space: nowrap;
  }
}

/* === Отзывы === */

.review-slider {
  position: relative;
  margin: 40px auto;
  background: #0f111f;
  padding: 20px 40px;
  border-radius: 12px;
  overflow: hidden;
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.review {
  flex: 0 0 calc(33.333% - 20px);
  background: #1a1d2f;
  border-radius: 12px;
  padding: 20px;
  margin-right: 20px;
  color: #fff;
  box-sizing: border-box;
}

.user {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }

@media (max-width: 768px) {
  .review {
    flex: 0 0 100%;
    margin-right: 0;
  }
}


/* === faq === */

.faq-full {
  width: 100%;
  max-width: 100%;
  padding-top: 40px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.faq-item {
  border-radius: 12px;
  background: #1a1d2f;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  color: #00c6ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  width: 20px;
  height: 20px;
  fill: #00c6ff;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #ccc;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

/* text */
.top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.banner {
  width: 500px;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 767px) {
    .banner{
        width: 100%;
		   height: 300px;
}}

.description {
  flex: 1;
}

.description h2 {
  color: #1e90ff;
}

.info-table {
  width: 100%; /* Таблица занимает всю ширину контейнера */
  border-collapse: collapse; /* Убирает двойные границы */
  margin-top: 30px;
  background: #1a1a2e;
  table-layout: auto; /* Позволяет ячейкам подстраиваться под содержимое */
  box-sizing: border-box; /* Учитывает границы и отступы в ширине */
}

.info-table th,
.info-table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
  word-wrap: break-word; /* Перенос длинных слов */
  word-break: break-word; /* Перенос непрерывных строк (например, URL) */
  overflow: hidden; /* Скрывает содержимое, выходящее за пределы ячейки */
  box-sizing: border-box; /* Учитывает padding и border в ширине */
}

.info-table th {
  background-color: #222;
  color: #1e90ff;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 600px) {
  .info-table th,
  .info-table td {
    padding: 6px; /* Уменьшенные отступы для компактности */
    font-size: 12px; /* Меньший шрифт для мобильных */
	width: 100%;
  }
}

.btn-section {
  text-align: center;
  margin: 30px 0;
}

.btn {
  background: #1e90ff;
  padding: 10px 25px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.bottom-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.bottom-section .left {
  flex: 1;
}

.bottom-section .right img {
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 767px) {
   .bottom-section .right img{
        width: 100%;
		   height: 300px;
}}
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00c6ff;
  font-size: 20px;
  line-height: 1;
}

.two-column-list {
  justify-content: space-between;
  flex-wrap: wrap;
}

.pros-cons {
  display: flex;
  justify-content: space-between;
}

.two-column-section {
  display: flex;
  justify-content: space-between;
}

/* Добавим разделительную линию */
.two-column-section .column {
  width: 48%;
}

.two-column-section .column + .column {
  border-left: 1px solid #1e90ff; /* Цвет и толщина линии */
  padding-left: 20px; /* Отступ от линии */
}

.scrollable-menu li img {    height: 15px;}