#contact-section {
  background-color: #f4f9fd;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  color: #083358;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-details li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

.app-links {
  display: flex;
  gap: 15px;
}

.app-download {
  background-color: #00c194;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.app-download:hover {
  background-color: #029e7c;
}

.contact-form-box {
  flex: 1 1 400px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  animation: slideIn 1s ease;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #083358;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.send-button {
  background-color: #00c194;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.send-button:hover {
  background-color: #029e7c;
}

.map-image-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.map-container,
.image-container {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-container,
  .map-image-section {
    flex-direction: column;
    text-align: center;
  }

  .app-links {
    justify-content: center;
  }
}
