body.contact {
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;   
}

.contact-container {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.contact-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #003366;
}
.contact-data {
    text-align: left;
    font-size: 1rem;
    margin-left: 15rem;
    margin-top: 2rem;
    color: black;
}
.contact-form {
  width: 100%;
  max-width: 400px;
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0055aa;
  box-shadow: 0 0 8px rgba(0,85,170,0.3);
  outline: none;
}

button[type="submit"] {
  background-color: #003366;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #0055aa;
  transform: scale(1.05);
}