<style>
/* (your existing styles already here...) */

/* Add this below your @media(max-width: 768px) rule: */

/* Contact Section */
#contact {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  text-align: center;
}

#contact .container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #f0f0f0;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

#contact button {
  padding: 1rem;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #0b5ed7;
}

</style>