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

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

/* HERO */

.hero{
  height:55vh;

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

  url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');

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

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

  text-align:center;

  padding:20px;
}

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

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

/* MAIN */

.main-content{
  display:flex;
  justify-content:center;

  padding:80px 20px;
}

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

  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;
  color:#38bdf8;
  margin-bottom:30px;
}

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

  color:#38bdf8;

  border-left:4px solid #38bdf8;

  padding-left:15px;
}

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

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

.content-box li{
  margin-bottom:10px;
}

/* CONTACT */

.contact-section{
  padding:0 20px 80px;
  display:flex;
  justify-content:center;
}

.contact-box{
  width:100%;
  max-width:800px;

  background:#0f172a;

  padding:50px;

  border-radius:25px;

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

.contact-box h2{
  margin-bottom:30px;
  color:#38bdf8;
}

.contact-box form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-box input,
.contact-box textarea{
  width:100%;

  padding:16px;

  border:none;

  border-radius:12px;

  background:#111827;

  color:white;

  font-size:16px;
}

.contact-box textarea{
  min-height:180px;
  resize:vertical;
}

.contact-box button{
  padding:16px;

  border:none;

  border-radius:12px;

  background:#0ea5e9;

  color:white;

  font-size:17px;

  cursor:pointer;

  transition:0.3s;
}

.contact-box button:hover{
  background:#0284c7;
}

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

/* FOOTER */

.footer{
  background:#020617;
}

.footer-top{
  display:flex;
  justify-content:space-between;

  flex-wrap:wrap;

  gap:40px;

  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{
  text-decoration:none;
  color:#d1d5db;
  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-content h1{
    font-size:42px;
  }

  .content-box,
  .contact-box{
    padding:30px;
  }

}
.contact-success{
  background: #e8fff0;
  color: #0f7a3d;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 15px;
  font-weight: 600;
  border: 1px solid #b7f0ca;
}

.contact-error{
  background: #ffeaea;
  color: #a10000;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 15px;
  font-weight: 600;
  border: 1px solid #ffc7c7;
}