* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: 'Georgia', serif; }

.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  text-align: center;
  color: white;
}

h1 { font-size: 3.5rem; }
h2 { letter-spacing: 3px; font-size: 1.2rem; margin-bottom: 1rem; }

.contact-form {
  background-color: black;
  color: white;
  padding: 2rem;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

button {
  background-color: #444;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
  }
  