.contact-container {
  padding: 3rem 1rem;
  max-width: 960px;
  margin: 5rem auto;
}

.contact-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-box h1 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-info p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.contact-form button:hover {
  background-color: #0059b3;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-box {
    padding: 1.5rem 1rem;
  }
}
