body {
  font-family: 'Segoe UI', sans-serif;
  background: #FFFAF2;
  color: #333;
}

.section {
  padding: 60px 15px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.cards {
  background: #e0e5ec;
  border-radius: 20px;
  box-shadow: 20px 20px 60px #ffffff,
              -20px -20px 60px #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 550px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* 🆕 Pulse effect on hover */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(53, 122, 183, 0.4);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(53, 122, 183, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(53, 122, 183, 0);
  }
}

.cards:hover {
  animation: pulse 1s ease;
}

.map-container {
  height: 100%;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  flex-grow: 1;
  min-height: 400px;
}

form h2 {
  text-align: center;
  margin-bottom: 25px;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-top: 5px;
  border: none;
  border-radius: 12px;
  background: #f0f0f3;
  box-shadow: inset 6px 6px 12px #d1d9e6,
              inset -6px -6px 12px #ffffff;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}

input:focus, textarea:focus {
  outline: none;
  background: #e8f0fe;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  background: #9a9fa4;
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #357ab7;
  transform: translateY(-2px);
}



.hidden {
  display: none;
}

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

  .cards {
    max-width: 100%;
  }

  
}
