.contact-map-section, .contact-info-section {
  width: 100%;
}

.contact-info-container {
  width: 100%;
  padding: 5vh 4vw;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15vh;
}

.contact-map-container {
  width: 100%;
  padding: 7vh 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-content-wrapper {
  width: 100%;
}

.contact-info-title {
  font-size: 3.5rem;
  line-height: 1.3;
  color: #141D32;
  font-weight: 800;
  margin: 2vh 0;
}

.contact-info-content {
  font-size: 1.5rem;
  color: #141D32;
}

.contact-map-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.contact-map-image, .contact-info-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
  max-height: 400px;
}

.contact-map-img, .contact-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-map-content {
  padding: 2vh 3vw;
}

.contact-map-title {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .contact-map-content-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info-container {
    grid-template-columns: 1fr;
    margin-top: 2vh;
    padding: 5vh 4vw 0 4vw;
  }
  .contact-info-image {
    display: none;
  }

  .contact-info-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-map-title {
    display: flex;
    justify-content: center;
  }

  .contact-info-content {
    font-size: 1.2rem;
  }
}