@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --space: clamp(12px, 3vw, 24px);
  --radius: 16px;
  --fs-title: clamp(16px, 6vw, 30px);
  --fs-btn: clamp(14px, 4.2vw, 18px);
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
.wp-block-button__link,
.wp-header-menu__link,
.info__wrapper > a {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e0e0e0;
  font-weight: 700;
}
.wp-block-button__link-white {
  font-size: var(--fs-title) !important;
  padding: 10px;
  max-width: 200px;
}
body {
  margin: 0;
}
.header {
  padding: 15px 0 0 0;
  position: relative;
}
* {
  box-sizing: border-box;
}
.header__container {
  padding: 0 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 100%;
  max-width: 120px;
  max-height: 25px;
}
.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 30px;
  justify-content: space-around;
  cursor: pointer;
  position: relative;
}
.header__burger-active .header__line:nth-last-child(1) {
  width: 30px;
  transition: 0.1s;
  rotate: 45deg;
  position: absolute;
}
.header__burger-active .header__line:nth-last-child(2) {
  width: 0%;
  transition: 0.1s;
}
.header__burger-active .header__line:nth-last-child(3) {
  width: 30px;
  transition: 0.1s;
  rotate: -45deg;
  position: absolute;
}
.header__line {
  width: 23px;
  height: 3px;
  transition: 0.1s;
  background-color: #fff;
  border-radius: 20px;
}
.header-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-block__button,
.info__wrapper > a {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  background-color: #141414;
  cursor: pointer;
  width: 100%;
}
.header-block__button span {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.header-block__button .header-block__image {
  width: 20px;
  height: 20px;
}
.header-block__link,
.info__wrapper > a {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  overflow: hidden;
}
.header-block__link::before,
.info__wrapper > a::before {
  content: " ";
  position: absolute;
  background-color: rgba(128, 128, 128, 0.4);
  transition: 0.2s;
  height: 100%;
  width: 0px;
  border-radius: 8px 0px 0px 8px;
  left: 0;
  top: 0;
}
.header-block__link::after,
.info__wrapper > a::after {
  content: " ";
  position: absolute;
  background-color: rgba(128, 128, 128, 0.4);
  transition: 0.2s;
  height: 100%;
  width: 0px;
  top: 0;
  right: 0;
  border-radius: 0 8px 8px 0;
}
.header-block__link:hover::before,
.info__wrapper > a:hover::before {
  transition: 0.2s;
  width: 50%;
}
.header-block__link:hover::after,
.info__wrapper > a:hover::after {
  transition: 0.2s;
  width: 50%;
}

.header-block__button-banner {
  background-color: #00b37e;
  padding: 30px !important;
  max-width: 300px;
  width: 100% !important;
}
.header-block__button-banner > .wp-block-button__link {
  line-height: 0;
  padding: 0;
}
.header-menu {
  position: absolute;
  background-color: #141414;
  left: -100%;
  width: 100%;
  border-top: 1px solid #fd5e3b;
  transition: 0.1s;
  height: 100vh;
  z-index: 1;
  transform: translateY(195px);
}
.header-menu__list {
  padding: 0;
  margin: 0;
}
.header-menu__list li {
  list-style-type: none;
}
.header-menu__list li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.header-menu__item {
  padding: 16px;
}
.wp-header-menu__link {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 15px;
  color: var(--main-color-link);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s all;
}
.wp-header-menu__link:hover {
  color: var(--main-color-link-hover);
  transition: 0.2s all;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-menu__image {
  width: 20px;
  height: 20px;
}
.header-menu__open {
  transition: 0.1s;
  left: 0%;
  z-index: 1;
}
.no-scroll {
  overflow: hidden;
}
.header-menu-desktop__list {
  list-style-type: none;
  padding: 0;
  justify-content: center;
  display: none;
}
.header-menu-desktop__list li {
  padding: 16px;
  display: flex;
}
.has-submenu {
  position: relative;
}

.has-submenu > .submenu {
  position: absolute;
  top: calc(80% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 8px;
  display: none;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
}
.has-submenu > .submenu.open {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  width: 100%;
  color: var(--main-color-link);
  text-decoration: none;
  white-space: nowrap;
}
.submenu li {
  padding: 0;
}
.submenu li a:hover {
  color: var(--main-color-link-hover);
}

.header-menu__image {
  margin-left: 6px;
  transition: transform 0.2s;
}
.has-submenu:hover > a .header-menu__image,
.has-submenu:focus-within > a .header-menu__image {
  transform: rotate(90deg);
}

/* main-block */

.banner {
  background: #141414;
  background-size: cover;
  background-position: center;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 10px;
}

.banner__wrapper {
  border-radius: var(--radius);
  overflow: hidden;
}

.banner__block {
  display: flex;
  align-items: center;
  height: 240px;
  justify-content: center;
}

.banner__promo {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  padding: clamp(16px, 5vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 680px;
}

.banner__title {
  font-size: var(--fs-title);
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}
.info {
  background-color: #121212;
  padding: 10px 0;
}
.info__wrapper {
  background-color: #fff;
  padding: 20px 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info__wrapper p,
.info__wrapper ul {
  font-size: clamp(15px, 2vw, 16px);
  line-height: clamp(24px, 1vw, 26px);
}
.info__wrapper span {
  font-weight: 700;
}
.info-block__image {
  text-decoration: none;
}
.info-block__image svg {
  max-width: 96px;
  width: 100%;
}
.info__logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.info__wrapper img {
  width: 100%;
}
.info__wrapper ul {
  list-style-type: disc;
  padding-left: 60px;
}
.info__wrapper h1,
.info__wrapper h2,
.info__wrapper h3,
.info__wrapper h4 {
  border-bottom: 2px solid #03f295;
  display: block;
  width: fit-content;
}
.info__wrapper > div > a {
  display: block;
  width: 100%;
}
.info__wrapper h1 {
  font-size: clamp(28px, 1vw, 36px);
  line-height: clamp(36px, 1vw, 44px);
}
.info__wrapper h2 {
  font-size: clamp(24px, 1vw, 30px);
  line-height: clamp(32px, 1vw, 38px);
}
.info__wrapper h3 {
  font-size: clamp(20px, 1vw, 24px);
  line-height: clamp(28px, 1vw, 32px);
  border: none;
  font-weight: 500;
}
.info__wrapper h4 {
  font-size: clamp(18px, 1vw, 20px);
  line-height: clamp(24px, 1vw, 26px);
}
.info__wrapper p a {
  color: var(--main-color-link);
  text-decoration: none;
}
.info__link:hover {
  color: var(--main-color-link-hover);
}

.faq {
  background: #121212;
  padding-bottom: 20px;
}

.faq__container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}

.faq__title {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(24px, 1vw, 28px);
  line-height: clamp(32px, 1vw, 36px);
}

.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 5px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  color: #e0e0e0;
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  border-radius: 10px 10px 0 0;
}
.faq__button:focus-visible {
  outline: 2px solid #2fe0ff;
  outline-offset: 3px;
}

.faq__chevron {
  transition: transform 0.2s ease;
}

.faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  background: linear-gradient(135deg, #00a8cc 0%, #2cc9e8 100%);
  border-radius: 0 0 10px 10px;
  padding: 0 16px;
}
.faq__panel > p {
  margin: 12px 0 16px;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 24px;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
}
.faq__item--open .faq__panel {
  max-height: 500px;
}
.faq__question {
  font-size: clamp(18px, 1vw, 16px);
  line-height: 26px;
  font-weight: 500;
}
.scrollup {
  --size: 40px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: var(--size);
  height: var(--size);
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #00b37e 0%, #009b6c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.scrollup:hover {
  opacity: 0.85;
}
.scrollup:focus-visible {
  outline: 2px solid #00b37e;
  outline-offset: 3px;
}

.scrollup--show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.scrollup__icon {
  width: 50%;
  height: 50%;
}
.footer {
  background-color: #141414;
  color: #e0e0e0;
  padding: 10px 0;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.footer-block {
  justify-content: space-between;
  display: flex;
  width: 100%;
  gap: 20px;
  flex-direction: column;
}
.footer-block__desription {
  width: 100%;
  font-size: 13px;
  line-height: 20px;
  color: #bdbdbd;
}
.footer-block__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-block__list {
  max-width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
}
.footer-block__list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
}
.footer-block__list li a:hover {
  opacity: 0.8;
}
.footer__pay-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 700px;
  width: 100%;
  flex-wrap: wrap;
}
.footer__pay-icons img {
  height: 28px;
}
.footer__copyright {
  text-align: center;
}
.footer__text {
  line-height: 25px;
}
.footer__text-bolt {
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .scrollup {
    transition: none;
  }
}
@media (min-device-width: 426px) {
  .header-block {
    flex-direction: row;
  }
  .header-block__link,
  .info__wrapper > a {
    width: 100%;
  }
  .header-menu {
    transform: translateY(135px);
  }
}
@media (min-device-width: 769px) {
  .header-menu-desktop__list {
    display: flex;
  }
  .header__burger {
    display: none;
  }
  .header__wrapper {
    justify-content: center;
  }
  .header__container {
    gap: 10px;
  }
  .header-block,
  .header-block__link,
  .info__wrapper > a {
    width: auto;
    justify-content: center;
    min-width: 160px;
    height: 48px;
  }
  .wp-block-button__link,
  .info__wrapper > a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .header {
    display: flex;
    justify-content: center;
  }
  .header__container {
    max-width: 820px;
    width: 100%;
    padding: 0;
    margin: 0 10px;
  }
  .header-menu-desktop__list li {
    padding: 15px 9px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-inline: 20px;
  }
  .banner {
    height: 340px;
  }
  .scrollup {
    --size: 48px;
    right: 24px;
    bottom: 24px;
  }
  .faq__button {
    padding: 18px 24px;
  }
  .footer-block {
    gap: 50px;
    flex-direction: row;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-block__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .footer-block__list {
    width: 50%;
  }
  .footer-block__desription {
    max-width: 300px;
  }
  .footer__pay-icons {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .banner__block {
    height: 340px;
  }
  .banner {
    background-position: 0 0;
  }
  .info__wrapper {
    padding: 60px;
    gap: 25px;
  }
}
.error404 {
  font-size: 30px;
}

/* ======== ОСНОВНИЙ СТИЛЬ ДЛЯ ВСІХ ТАБЛИЦЬ ======== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
	display: block;
	justify-content:center
    white-space: nowrap; /* без переносу тексту */
    overflow-x: auto; /* скрол на мобільних */
}
tbody, thead {
	width: 100%;
	display: flex;
	flex-direction: column;
}
table > tbody > tr, table > thead > tr {
	width: 100%;
	display: flex;
}
/* Базові комірки */
table th,
table td {
	width: 100%;
    border: 1px solid #d9d9d9;
    padding: 12px 16px;
    text-align: left;
	min-width: 200px
}

/* Шапка — по центру */
table th {
    font-weight: 600;
    background: #f5f5f5;
    text-align: center;
}

/* Перша колонка — ліва */
table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Ховер по рядку */
table tr:hover td {
    background: #fafafa;
}

/* Адаптив — щоб не ламало верстку */
@media (max-width: 768px) {
    table {
		display: block
        white-space: normal; /* дозволяємо перенос */
    }

    table th,
    table td {
        padding: 10px 12px;
        font-size: 15px;
		
    }
}
