/* Popup Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  .modal-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .modal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
  }
  
  .modal-content strong {
    color: #333;
  }
  
  .close-button {
    padding: 0.75rem 1rem;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .close-button:hover {
    color: #000;
  }
  
  /* Ensure the terms link is clickable */
  .terms-link {
    cursor: pointer;
    text-decoration: underline;
    color: #007bff;
  }
  
  .terms-link:hover {
    color: #0056b3;
  }