/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #000; /* black background */
  color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

/* Headline */
h1 {
  font-size: 3em;
  color: gold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Subtitle */
.subtitle {
  font-size: 1.3em;
  color: #f1f1f1;
  margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
  background-color: red;
  color: white;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: darkred;
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
  font-size: 1.1em;
}

.contact-info a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #111;
  padding: 20px;
  color: #aaa;
  font-size: 0.9em;
  margin-top: 60px;
  border-top: 5px solid red;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .subtitle {
    font-size: 1em;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .contact-info {
    font-size: 1em;
  }
}