.contact-simple {
  padding: 80px 10%;
  background: #f8f9fb;
  text-align: center;
}

.contact-simple h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #171994;
}

.contact-simple h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

.contact-simple p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.form-map-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.simple-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.simple-form input, .simple-form textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: "Jost", sans-serif;
}

.simple-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #171994;
  color: white;
  border: 2px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
}

.simple-form button:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}

.map-container iframe {
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-map-grid {
    flex-direction: column;
  }
}

.contact-emails {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(to bottom right, #f8f9fa, #eef7f8);
}

.contact-emails h2 {
  font-size: 2.2rem;
  color: #0f4c61;
  margin-bottom: 50px;
  font-weight: 700;
}

.email-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.email-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.email-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(15, 76, 97, 0.25);
}

.email-card i {
  font-size: 2rem;
  color: #0f4c61;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.email-card:hover i {
  color: #007b83;
}

.email-card h3 {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.email-card a {
  color: #0f4c61;
  text-decoration: none;
  font-size: 1rem;
  word-break: break-all;
  transition: color 0.3s ease;
}

.email-card a:hover {
  color: #007b83;
  text-decoration: underline;
}