body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  background-image: linear-gradient(to bottom, rgba(17,17,17,0.7), #111), url('/images/banner.png'), radial-gradient(#333 1px, transparent 1px);
  background-size: 100% auto, 100% auto, 20px 20px;
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: top center, top center, top left;
  color: #fff;
  overflow-x: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  flex-wrap: wrap;
}

.overlay-img {
  width: 200px;
  height: auto;
  margin-right: 2rem;
}

.header-text {
  flex-grow: 1;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #00ffcc;
  margin: 0;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons a {
  color: #00ffcc;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #00ccaa;
}

.description {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.2rem;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  padding: 0.8rem 1.5rem;
  background-color: #00ffcc;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.button:hover {
  background-color: #00ccaa;
}

.email-highlight {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff0066;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  margin: 1rem auto;
  box-shadow: 0 0 15px #ff0066;
}

.contact-section {
  background-color: #222;
  padding: 3rem 1rem;
  margin-top: 3rem;
  text-align: center;
}

.contact-section h2 {
  color: #00ffcc;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

input[type="submit"] {
  background-color: #00ffcc;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

input[type="submit"]:hover {
  background-color: #00ccaa;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding: 1rem;
  margin-top: 2rem;
}