
.Space {
  margin-top: 70px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 40px);
    max-width: 1000px;
  }
  .contact-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact-card h2 img {
    width: 30px;
    height: auto;
  }
  .contact-card p {
    margin: 10px 0;
    font-size: 16px;
  }
  .contact-card a {
    color: #6e8ca4;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }
  .contact-card a:hover {
    color: #ff6600;
  }
  .map-container {
    margin-top: 20px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 100%;
    max-width: 1000px;
    margin-top: 20px;
  }
  .contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }
  .contact-form button {
    background: #6e8ca4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease-in-out;
  }
  .contact-form button:hover {
    background: #5a768c;
  } 