:root {
  --primary-gradient: linear-gradient(to right, #1e3c72, #2a5298);
  --button-gradient: linear-gradient(to right, #d55a2a, #e47833);
  --card-bg: rgba(255, 255, 255, 0.1);
  --text-light: #f9f9f9;
  --footer-bg: #232a34;
  --footer-text: #cccccc;
  --hero-bg: url('https://th.bing.com/th/id/R.ce5e911b97e5a2d75c2b728a4fdb78a6?rik=i%2ffl49ZAQpxa7A&riu=http%3a%2f%2fwallpapercave.com%2fwp%2fJXwuN2Q.jpg&ehk=qtzmO4WfAkYG%2bYXAaiz9d3DuMYSdej9WVRxg%2fkf6qPE%3d&risl=&pid=ImgRaw&r=0') no-repeat center center/cover;
  --main-bg: #0f1c2e;
  --secondary-bg: #1c2833;
  --highlight-gradient: linear-gradient(to right, #ff7f00, #ffbe00);
  --shadow: rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-light);
  background: var(--main-bg);
}

.hero {
  background: var(--hero-bg);
  height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 2rem;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 28, 46, 0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cta-button {
  background: var(--button-gradient);
  border: none;
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 15px var(--shadow);
}

.cta-button:hover {
  opacity: 0.9;
  border: 2px solid #fff;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-content {
  padding: 6rem 2rem;
  background: var(--secondary-bg);
  text-align: center;
  color: #fff;
  box-shadow: 0 -4px 30px var(--shadow);
}

.contact-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--highlight-gradient);
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 5px;
}

.contact-content p {
  font-size: 1.2rem;
  color: #dce3ec;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.email {
  font-size: 1.5rem;
  color: var(--highlight-gradient);
  margin-top: 1.5rem;
}

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 5rem 1rem;
  border-top: 3px solid var(--primary-gradient);
}

footer p {
  font-size: 1.2rem;
}

footer a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
  }

  .contact-content h2 {
    font-size: 2.4rem;
  }
}