.office-section.alt {
  background-color: var(--light-gray);
  border-radius: 24px;
  margin: 0 120px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card {
  background: var(--light-color);
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card > p {
  color: var(--dark-gray);
  margin-bottom: 25px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-text p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 2px;
  line-height: 1.5;
}

.contact-text a {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--primary-dark);
}

.map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .office-section.alt {
    border-radius: 16px;
    margin: 0 16px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .map,
  .map iframe {
    min-height: 280px;
  }
}
