 /* Grid of service cards */
    .services-section h1 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .service-item {
      background: #f0f0f0;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      transition: transform .2s;
    }
    .service-item:hover {
      transform: translateY(-5px);
    }
    .service-item img {
      margin-bottom: 10px;
      width: 100%;
      height: 160px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .service-item h3 {
        font-size: 1.1rem;
        margin: 0;
        line-height: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Modal overlay */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }
    .modal.active {
      display: flex;
    }
    /* Modal content */
    .modal-content {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      max-width: 600px;
      width: 90%;
      max-height: 80%;
      overflow-y: auto;
      position: relative;
    }
    .modal-content h2 {
      margin-top: 0;
      font-size: 24px;
      line-height: 33px;
    }
    .modal-content ul {
      padding-left: 20px;
    }
    .modal-close {
      position: absolute;
      top: 10px; right: 10px;
      background: none;
      border: none;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
    }