.get-started-section {
    padding: 3rem;
    background: #f9f9f9;
  }
  
  .options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .form-box input,
  .form-box select,
  .form-box textarea,
  .form-box button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .form-box button {
    background-color: #0066cc;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }

    
  .option-card, .consultation-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left; 
  }
  
  .license-list {
    list-style: disc outside; /* Change 'inside' to 'outside' */
    margin: 1rem 0 1rem 0; /* Adjust margin or remove left margin if not needed */
    padding-right: 10rem; /* Adjust padding to give space for the disc */
    display: block;
    text-align: left;
  }

  ul {
    list-style: none; /* Remove default markers first */
    margin: 0;
    padding: 0;
  }
  
  li {
    margin: 0;
    padding: 0;
  }

  .license-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    display: block;
  }
  
  .license-list li {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .license-list a {
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease-in-out;
  }
  
  .license-list a:hover {
    text-decoration: underline;
    color: #0066cc;
  }

  .license-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .license-item {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;    /* removes underline */
    color: #333;              /* default text color */
  }
  
  .license-item:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
    text-decoration: none;
    color: #000;
  }

  .option-card p a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .option-card p a:hover {
    text-decoration: underline;
    color: #004999;
  }
  
  