.contact-container {
  background-color: #1a1a1a;
  padding: 2rem;
  color: white;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #00bfff;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #333;
  background-color: #2a2a2a;
  color: white;
  border-radius: 5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

button[type="submit"] {
  background-color: transparent;
  color: #00bfff;
  border: 2px solid #00bfff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
}

button[type="submit"]:hover {
  background-color: #00bfff;
  color: white;
}
