    /* Basic styling */
    .buttons {
      display: block;
      gap: 3rem;
      margin-bottom: 20px;
    }
    .buttons button {
      width: 3rem;
      height: 3rem;
      background-color: #1177cc;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.5rem;
    }
    .buttons button:hover {
      background-color: #33ccff;
    }
    .paragraphs .details {
      display: none; /* Hide all paragraphs initially */
    }
    .paragraphs .default {
      display: block; /* Show the default paragraph */
    }