#contact {
  padding: 150px 20px;
  /*background-color: #2c2c2c;/**/
  background-image: url("../assets/images/hero5.webp");
    background-size: cover;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  /*color: #222;/**/
  color: white;
}

.contact-container p {
  text-align: center;
  font-size: 1rem;
  /*color: #555;/**/
  color: white;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  /*color: #333;/**/
  color: white;
}

.form-group input,
.form-group textarea {
    min-width: 100%;
  max-width: 100%;
  padding: 12px;
  color: white;
  background-color: rgb(57, 57, 57);
  border: 1px solid #ccc;/**/
  border-radius: 6px;
  font-size: 1rem;
}

.submit-button {
  padding: 12px 24px;
  background-color: #0078d4;
  /*color: #fff;/**/
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #005fa3;
}

.contact-info {
  margin-top: 60px;
  text-align: center;
}

.contact-info h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  /*color: #333;/**/
  color: white;
}

.contact-info p {
  font-size: 1rem;
  /*color: #444;/**/
  color: white;
}