* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(rgb(45, 46, 46) 0%, rgb(0, 0, 0) 100%) rgb(45, 46, 46);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 750px;
  padding: 0 40px 80px;
  text-align: center;
  overflow-x: hidden;
}

.banner {
  width: 600px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto 0;
}

.cta-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 40px;
  padding-top: 8px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.btn {
  flex: none;
  box-sizing: content-box;
  width: 263px;
  height: 40px;
  margin: 0;
  border: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.btn-telegram {
  background: linear-gradient(rgb(0, 174, 250), rgb(9, 131, 197));
}

.btn-whatsapp {
  background: linear-gradient(180deg, #59f774, #2dd54a);
}

.icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.anonymity {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

.divider {
  border: none;
  border-top: 1px solid #b8860b;
  margin: 30px 0;
}

.benefits-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 0;
}

.benefits-list li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #fff;
}

.phone {
  color: #e0393e;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px 60px;
  }

  .buttons {
    gap: 12px;
  }

  .btn {
    box-sizing: border-box;
    width: calc(50% - 6px);
    max-width: 263px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px 40px;
  }

  .cta-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .buttons {
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn {
    box-sizing: border-box;
    width: calc(50% - 5px);
    height: 40px;
    padding: 6px;
    font-size: 12px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .anonymity {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .divider {
    margin: 20px 0;
  }

  .benefits-title {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .benefits-list li {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .phone {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
