.contact {
  background-color: #121417;
  color: #e2e8f0;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-subtext {
  color: #94a3b8;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  background-color: #1f2329;
  border: 1px solid #2f343c;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4c8eda;
}

.contact-form button {
  padding: 14px;
  background-color: #4c8eda;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #3b75c0;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-icons a {
  font-size: 28px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #4c8eda;
}
