﻿.terms-hero {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 6rem;
  background: black;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .terms-hero {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
}

.terms-hero::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.1) 0%, rgba(160, 79, 244, 0.2) 100%);
  filter: blur(100px);
  border-radius: 100%;
}

.terms-hero::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.1) 0%, rgba(160, 79, 244, 0.2) 100%);
  filter: blur(100px);
  border-radius: 100%;
}

.terms-hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.terms-hero__heading {
  font-size: clamp(34px, 5vw, 60px);
  color: white;
  text-align: center;
}

.terms-content {
  position: relative;
  padding: 2.5rem 0;
  background: white;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}

@media (min-width: 1024px) {
  .terms-content {
    padding: 5rem 0;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
  }
}

.terms-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.terms-content__inner p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: black;
}

@media (min-width: 1024px) {
  .terms-content__inner p {
    font-size: 18px;
  }
}
