/* Service-Area-Map-Content */
.service-area-content {
    padding: 20px;
    text-align: center;
  }
  .service-area-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  .service-area-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-container {
    width: 100%;
    height: 400px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden; /* Ensure map doesn't overflow rounded corners */
  }

  /* Placeholder for the map - replace with actual map embed code */
  .map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--gray);
  }

  .covered-areas {
    text-align: left;
    margin-bottom: 30px;
  }
  .covered-areas h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
  }
  .covered-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }
  .covered-areas ul li {
    font-size: 1rem;
    color: var(--gray);
  }