/* Contact page-specific styles */
#contact {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

#contact h3 {
  font-size: 2rem;
  color: #002B5B;
  margin-bottom: 20px;
}

#contact .about-box {
  background: #ffffff;
  padding: 25px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

#contact .about-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

#contact form button {
  background-color: #002B5B;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact form button:hover {
  background-color: #FFD700;
  color: #002B5B;
}
