.serviceAreas {
  background-color: var(--dark);
  padding: 120px 0;
}

.serviceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}

.serviceCard {
  background-color: var(--dark-2);
  border: 1px solid var(--border);
  padding: 48px;
  border-top: 3px solid var(--yellow);
}

.serviceList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.serviceItem {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--white);
}

.serviceItemDot {
  width: 8px;
  height: 8px;
  background-color: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.serviceMapWrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--border);
  background-color: var(--dark-3);
  position: relative;
}

.serviceMapWrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) hue-rotate(180deg) contrast(1.2);
}

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