/* === Кнопки общего назначения === */
.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;
   display: flex;
    align-items: center;
	 text-transform: uppercase;
}

/* === Кнопка "Регистрация" === */
.header__button-register {
  background-color: #f5dc1b;
  cursor: pointer;
  transition: all 0.1s;
  color: #000;
}

.header__button-register:hover {
  background-color: #f5dc1b;
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
}

/* === Кнопка "Войти" === */
.header__button-login {
  cursor: pointer;
  transition: all 0.1s;
}

.header__button-login:hover {
  background-color: #f5dc1b;
}

.text {
	padding: 20px;
	color:#f0f0f0;
}
/* === Таблица === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0em 0;
  font-size: 1rem;
  background-color: #333;
}

/* Заголовки таблицы */
thead th {
  background-color: #171818;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  padding: 12px 15px;
  white-space: nowrap;
}

/* Ячейки таблицы */
td {
  padding: 12px 15px;
  border: 1px solid #333;
  white-space: nowrap;
}

/* Зебра */
tbody tr:nth-child(even) {
  background-color: #171818;
}

/* === Адаптивность таблицы === */
@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead, tbody, th, td, tr {
    white-space: nowrap;
  }
}

/* === Отзывы === */

.review-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
   padding: 20px;
}

.review {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  box-sizing: border-box;
  min-height: 120px;
}

.review h4 {
  margin: 0 0 10px;
  color: #005598;
}

.review p {
  margin: 0;
}

/* Адаптивность: по одному на мобиле */
@media (max-width: 600px) {
  .review {
    flex: 0 0 100%;
  }
}

/* Убираем горизонтальный скроллбар на WebKit */
.review-scroll::-webkit-scrollbar {
  display: none;
}


/* === faq === */

.faq-full {
  width: 100%;
  max-width: 100%;
  padding-top: 40px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.faq-item {
  border-radius: 12px;
  background: #F0F0F0;
  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: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  width: 20px;
  height: 20px;
  fill: #000;
  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: #000;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}


.footer {
  background: #111;
  color: #ccc;
  padding: 30px 20px;
  font-family: sans-serif;
  text-align: center;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-logos img:hover {
  opacity: 1;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logos img {
    height: 32px;
  }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        h1 {
            background: linear-gradient(45deg, #00f5ff, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
        }

        h2 {
            color: #00f5ff;
            font-size: 2rem;
            margin: 40px 0 20px 0;
            border-left: 4px solid #00f5ff;
            padding-left: 15px;
            background: rgba(0, 245, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
        }

        h3 {
            color: #ff6b6b;
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
            border-bottom: 2px solid #ff6b6b;
            padding-bottom: 10px;
        }

        h4 {
            color: #4ecdc4;
            font-size: 1.2rem;
            margin: 20px 0 10px 0;
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .intro-section {
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 107, 107, 0.1));
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 245, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
        }

        .two-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .info-table th,
        .info-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-table th {
            background: linear-gradient(135deg, #00f5ff, #4ecdc4);
            color: #000;
            font-weight: bold;
        }

        .info-table tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }

        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            .table-container {
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            text-align: center;
            margin: 20px auto;
            display: block;
            max-width: 250px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(255, 107, 107, 0.2));
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #4ecdc4;
            margin: 20px 0;
        }

        .warning-box {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 193, 7, 0.2));
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #ff6b6b;
            margin: 20px 0;
        }

        .steps-list {
            counter-reset: step-counter;
            list-style: none;
        }

        .steps-list li {
            counter-increment: step-counter;
            background: rgba(255, 255, 255, 0.05);
            margin: 10px 0;
            padding: 15px;
            border-radius: 10px;
            position: relative;
            padding-left: 60px;
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #00f5ff, #4ecdc4);
            color: #000;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .emoji-list {
            list-style: none;
            padding-left: 0;
        }

        .emoji-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .pros-cons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .pros-box {
            background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(0, 245, 255, 0.1));
            padding: 20px;
            border-radius: 15px;
            border: 2px solid rgba(78, 205, 196, 0.5);
        }

        .cons-box {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 193, 7, 0.1));
            padding: 20px;
            border-radius: 15px;
            border: 2px solid rgba(255, 107, 107, 0.5);
        }

        .centered-image {
            text-align: center;
            margin: 30px 0;
        }

        .centered-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .container {
                padding: 15px;
            }
            
            .two-column {
                grid-template-columns: 1fr;
            }
        }
    </style>