body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #0a0f24 0%, #1a1a2e 100%);
  color: #ffffff;
  line-height: 1.8;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Styles */
.site-header {
  background: transparent;
  padding: 60px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header h1 {
  font-family: "Orbitron", sans-serif; /* Use a display font */
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
  color: #00f0ff;
  text-shadow: 2px 2px 10px rgba(0, 240, 255, 0.6);
}

.site-header .tagline {
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: 300;
  color: #ccc;
}

/* Main Layout */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 50%;
}

.hero-image {
  max-width: 45%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: white;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f1f1f1;
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* Accent + Utility */
.highlight {
  color: #00f0ff;
  font-weight: 700;
}

.shadow {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rounded {
  border-radius: 12px;
}

a.a {
  color: rgba(0, 240, 255, 0.6);
}
