.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-infos {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form {
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form textarea {
  width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.contact-form button {
    background: #2b5d9e;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.social-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  background: #2b5d9e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #1e3d6b;
}

.map-embed {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
