.contact-page {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  background: #f2f2f2;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  background: black;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
}

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

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: black;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}



.success-message {
  display: none;
  margin-top: 15px;
  color: green;
  font-weight: 700;
}