@font-face {
  font-family: "PT Sans";
  src: url("PTSans-Regular.ttf");
}

body {
  background: linear-gradient(90deg, #183257 0, #183257 100%);
  font-family: "PT Sans", sans-serif;
  color: #fff;
  margin: 0;
  padding: 0
}

.banner-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center
}

.banner-logo img {
  max-width: 80%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.signup-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #f50;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  margin: 20px 0
}

.signup-button:hover {
  background-color: #ffa366;
  transform: translateY(-5px)
}

.info-section {
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  text-align: center
}

.info-text {
  font-size: 28px;
  color: #f50;
  margin: 10px 0;
  max-width: 700px
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0
}

.payment-icons img {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform .3s ease
}

.payment-icons img:hover {
  transform: scale(1.1)
}

.license-info {
  padding: 20px 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #fff
}

.license-info a {
  color: #f50;
  text-decoration: none;
  font-weight: 700
}

.license-info a:hover {
  text-decoration: underline
}

.legal-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px
}

ul {
  list-style-type: none;
  padding-left: 0
}

li {
  margin-bottom: 10px
}

.legal-logos img {
  max-height: 40px;
  width: auto;
  transition: transform .3s ease
}

.legal-logos img:hover {
  transform: scale(1.1)
}

.site-footer {
  background-color: #0d1e30;
  padding: 40px 20px;
  color: #fff;
  text-align: center
}

.site-footer p {
  font-size: 12px;
  margin: 5px 0;
  color: #fff
}

.image-container {
  position: relative;
  display: inline-block;
}

.button-wrapper {
  position: absolute;
  bottom: 0px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.signup-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FF5500;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 7px 65px rgba(0, 0, 0, 0.646);
}

.signup-button:hover {
  background-color: #b23b00;
  transform: scale(1.05);
  box-shadow: 0 7px 65px rgba(0, 0, 0, 0.646);
}


@media screen and (max-width: 768px) {
  .signup-button {
    padding: 10px 30px; /* Зменшуємо відступи всередині кнопки */
    font-size: 18px;    /* Зменшуємо розмір тексту */
    border-radius: 40px; /* Робимо кнопку більш компактною */
  }
}

/* Адаптація для екранів менше 480px */
@media screen and (max-width: 480px) {
  .signup-button {
    padding: 8px 25px; /* Ще більше зменшуємо відступи для дуже малих екранів */
    font-size: 16px;   /* Ще менший розмір тексту для мобільних телефонів */
    border-radius: 35px; /* Додаткове округлення для маленьких екранів */
  }
}


@media screen and (max-width:768px) {
  .banner-section {
    padding: 40px 20px
  }

  .info-text {
    font-size: 24px
  }

  .signup-button {
    font-size: 20px;
    padding: 12px 30px
  }

  .site-footer p {
    font-size: 10px
  }
}


@media screen and (max-width: 1025px) {
  .payment-icons {
      gap: 10px; 
      padding: 0 5px;
  }

  .payment-icons img {
      height: 30px;
  }
}

@media screen and (max-width: 1025px) {
  .payment-icons {
      flex-direction: column; 
      gap: 12px; 
      padding: 0;
  }

  .payment-icons img {
      height: 28px; 
  }
}

@media screen and (max-width: 768px) {
  .legal-logos {
      gap: 15px; 
      padding: 0 5px;
  }

  .legal-logos img {
      height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .legal-logos {
      flex-direction: column;
      gap: 12px; 
      padding: 0;
  }

  .legal-logos img {
      height: 28px; 
  }
}



.logo {
  background-color: #183257;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0
}

.logo img {
  border-radius: 10px;
  max-width: 250px;
  height: auto;
  transition: transform .3s ease;
  filter: none
}

.logo img:hover {
  transform: scale(1.1)
}

@media screen and (max-width:768px) {
  .logo img {
    max-width: 120px
  }
}

@media screen and (max-width:480px) {
  .logo img {
    max-width: 100px
  }
}