.contact-section {
    /* margin-top: 7vh; */
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  /* .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  } */
  
  .map-side {
    width: 50%;
    height: 100%;
  }
  
  .map-placeholder {
    background: var(--gradient);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .map-placeholder i {
    font-size: 4rem;
    color: white;
  }
  
  .info-side {
    padding: 20px;
  }
  
  .info-side h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .contact-description {
    color: var(--dark-color);
    margin-bottom: 40px;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  .contact-details p {
    color: var(--dark-color);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
  }
  
  .social-link:hover {
    transform: translateY(-5px);
  }
  
  @media (max-width: 900px) {
  
  .map-side {
    width: 100%;
  }
    .map-placeholder {
      height: 300px;
    }
  
    .info-side {
      text-align: center;
    }
  
    .contact-item {
      flex-direction: column;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }
  }