.contact-section {
  background: linear-gradient(to bottom, #a1c4fd, #c2e9fb);
  padding: 6rem 1rem;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

.contact-info,
.contact-form {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 0 0 400px;
  max-width: 400px;
  flex-shrink: 0;
}

.contact-form {
  flex: 1;
}

.contact-info a {
  text-decoration: none;
  color: #007bff;
  white-space: nowrap;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.contact-form input,
.contact-form textarea {
  background-color: white;
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #111;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
  align-self: stretch;
  margin-top: 0.5rem;
}

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

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.contact-form label {
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  color: #333;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
  }

  .contact-info {
    white-space: normal;
  }
}