    /* Hide all sections except the first one */
    .info-section {
        display: none;
    }

    /* Show the first section */
    #section-personal-information {
        display: block;
    }
    .visually-hidden {
    display: none;
}
/* Add a bold border when the answers section is focused */
#plan-content:focus {
  border: 2px solid #000; /* You can adjust the border color and width as needed */
  outline: none; /* Remove the default outline style */
}