/* CONTACT SECTION */
.contact-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  color: #f1c40f;
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #1c1c1c;
  color: #fff;
  font-size: 1rem;
}

.contact-form button {
  padding: 15px;
  border: none;
  background: #f1c40f;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e0b507;
}
