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

html{
  scroll-behavior:smooth;
}

body{
  background:#081120;
  color:#e5e7eb;
  font-family:Arial, sans-serif;
  line-height:1.9;
}

/* HERO */

.hero{
  height:45vh;

  background:
  linear-gradient(rgba(0,0,0,0.75),
  rgba(0,0,0,0.85)),

  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:20px;
}

.hero-content{
  max-width:700px;
}

.hero h1{
  font-size:60px;
  margin-bottom:20px;
  color:#38bdf8;
}

.hero p{
  font-size:20px;
}

/* MAIN */

.main-content{
  display:flex;
  justify-content:center;
  padding:80px 20px;
}

.content-box{
  width:100%;
  max-width:1000px;

  background:#0f172a;

  padding:50px;

  border-radius:25px;

  box-shadow:0 0 40px rgba(0,0,0,0.4);
}

/* HEADINGS */

.content-box h1{
  font-size:42px;
  margin-bottom:30px;
  color:#38bdf8;
}

.content-box h2{
  margin-top:60px;
  margin-bottom:20px;

  font-size:30px;

  color:#38bdf8;

  border-left:4px solid #38bdf8;

  padding-left:15px;
}

.content-box h3{
  margin-top:35px;
  margin-bottom:15px;

  font-size:24px;

  color:#7dd3fc;
}

/* TEXT */

.content-box p{
  margin-bottom:25px;
  color:#d1d5db;
}

/* LISTS */

.content-box ul{
  margin-left:30px;
  margin-bottom:30px;
}

.content-box li{
  margin-bottom:12px;
  color:#cbd5e1;
}

/* LINKS */

.content-box a{
  color:#38bdf8;
  text-decoration:none;
}

.content-box a:hover{
  text-decoration:underline;
}

/* AGREEMENT */

.privacy-agreement{
  margin-top:60px;

  background:#111827;

  padding:30px;

  border-radius:18px;

  border:1px solid #1e293b;
}

.checkbox-container{
  display:flex;
  align-items:flex-start;
  gap:15px;
}

.checkbox-container input{
  transform:scale(1.3);
  margin-top:5px;
}

.checkbox-text{
  color:#e5e7eb;
}

#privacyStatus{
  margin-top:20px;
  color:#38bdf8;
}

/* FOOTER */

.footer{
  margin-top:80px;
  background:#020617;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;

  padding:60px 20px;
}

.footer-brand h2{
  color:#38bdf8;
  margin-bottom:15px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links h3{
  margin-bottom:20px;
}

.footer-links a{
  color:#d1d5db;
  text-decoration:none;
  margin-bottom:12px;
}

.footer-links a:hover{
  color:#38bdf8;
}

.footer-bottom{
  text-align:center;

  padding:20px;

  border-top:1px solid #1e293b;

  color:#94a3b8;
}

/* MOBILE */

@media(max-width:768px){

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .content-box{
    padding:30px;
  }

}