:root {
  --primary: #1e3a8a;
  --primary-dark: #172554;
  --secondary: #e2e8f0;
  --accent: #4ade80;
  --text: #0f172a;
  --text-light: #64748b;
  --background: #ffffff;
  --surface: #f8fafc;
}
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TodaySansNow Pro";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  align-items: unset;
}

.container {
  max-width: auto;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.hero,
.privacy,
.support,
.terms {
  background-color: #1e3a8a; /* Base color */
  background: radial-gradient(
      circle,
      transparent 10%,
      #1e3a8a 10%,
      #1e3a8a 90%,
      transparent 90%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 10%,
        #1e3a8a 10%,
        #1e3a8a 90%,
        transparent 90%,
        transparent
      )
      20px 20px,
    linear-gradient(#2c3175 1.5px, transparent 1.5px) 0 -0.75px,
    linear-gradient(90deg, #2c3175 1.5px, #1e3a8a 1.5px) -0.75px 0;
  background-size: 40px 40px, 40px 40px, 20px 20px, 20px 20px; /* Smaller background size */
  color: white;
  padding: 6rem 0;
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero iframe {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .hero iframe {
    width: 100%;
    height: 1300px;
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--background);
  transform: skewY(-3deg);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.hero-content > img {
  height: auto;
  width: 200px;
}
.hero-text {
  max-width: 600px;
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  text-align: center;
}
.logo-main {
  height: auto;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.arrow {
  margin-top: 80px;
  margin-bottom: 30px;
  transform: translate(-50%, -50%);
  transform: rotate(360deg);
  cursor: pointer;
}

.arrow span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 5px solid rgb(181, 249, 9);
  border-right: 5px solid rgb(181, 249, 9);
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
.privacy,
.support,
.terms {
  align-items: start;
  padding-left: 80px;
  padding-right: 80px;
  font-family: "TodaySansNow Pro";
  gap: 20px;
}
.privacy-header > h1,
.support-header > h1,
.terms-header > h1 {
  font-family: "TodaySansNow Pro";
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.email {
  color: yellow;
  font-weight: 500;
}
