@import url("style.css");

.contact {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  animation: fadeIn 1s ease-in-out;
}

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

.contact p {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #333;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
  background-color: #f4f6fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 1rem;
  color: #003366;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: #003366;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0052a5;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}

.contact-info ul li {
  margin-bottom: 0.8rem;
  color: #444;
}

.contact-info a {
  color: #003366;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map {
  margin-top: 3rem;
}

.map h2 {
  margin-bottom: 1rem;
  color: #003366;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}

/* Simple fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
