.map-section {
    display: flex;
    min-height: 600px;
    background: transparent;
  }
  
  .map-area {
    position: relative;
    flex: 1.2;
    overflow: hidden;
  }
  
  #cms-map {
    width: 100%;
    height: 100%;
  }
  
  .map-overlay-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: rgba(178, 215, 210, 0.55);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  .map-content {
    flex: 0.8;
    background: transparent !important;
    padding: 30px;
}
  .map-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
  }
  
  .map-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
    color: #444;
  }
  
  .location-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .location-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .location-list li:hover,
  .location-list li.active {
    color: #2f8f87;
  }
  