body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('assets/bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

h1 {
  color: white;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.form-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 280px;        /* column width */
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 12px;
  text-align: left;    /* align text and inputs left */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  height: 80px; /* make textarea taller for readability */
}

.contact-form button {
  width: 100%;
  background: #003366;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0055aa;
}
