* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* Reuse hero style for consistency */
.contact-hero {
  background-image: url('../images/hero2.jpg');
  background-size: cover;
  background-position: center;
  height: 30vh;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* shaded overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  z-index: 1;
}

.contact-section {
  background-color: #0e0e0e;
  padding: 4rem 2rem;
  color: #fff;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.form-container label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: #2a2a2a;
  color: #fff;
}

.form-container button {
  background-color: #9333ea;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.form-container button:hover {
  background-color: #7e22ce;
}
