.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .modal-content h3 {
    margin-bottom: 15px;
  }
  
  .modal-content p {
    text-align: left;
    font-size: 16px;
  }
  
  .close-modal {
    margin-top: 20px;
    padding: 10px 20px;
    background: #d40000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .close-modal:hover {
    background: #a30000;
  }
  
  .service-card {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .modal-overlay.active {
    display: flex;
  }
  