
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #fff;
  background: #111;
  text-align: center;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 4rem 2rem;
}
section {
  padding: 2rem;
}
.award-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.award-row img {
  height: 150px;
}
input, textarea {
  width: 80%;
  margin: 0.5rem auto;
  padding: 0.5rem;
  display: block;
}
button {
  padding: 0.5rem 1rem;
  background: red;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
footer {
  background: #222;
  padding: 1rem;
}
footer .social a {
  color: #4dc3ff;
  margin: 0 1rem;
  text-decoration: none;
}
