body {
    background-color: #FFFAEC;
    color: #111;
    margin: 0;
    padding: 0;
  }

  h1 {
    display: none;
  }
  
  /* Wrapper for centering content */
  .links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
    min-height: calc(100vh - 120px); /* adjust if navbar changes */
    box-sizing: border-box;
  }
  
  /* The white box */
  .links-box {
    background-color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    max-width: 650px;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  /* Heading */
  .links-box h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #222;
  }
  
  /* Link list */
  .link-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .link-list li {
    margin-bottom: 1.2rem;
  }
  
  .link-list a {
    color: #222;
    text-decoration: none;
    font-size: 1.15rem;
    line-height: 1.6;
    display: inline-block;
    padding: 0.25rem 0;
    transition: color 0.25s ease;
  }
  
  .link-list a:hover {
    color: #0066cc;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .links-wrapper {
      padding: 3rem 1rem;
    }
  
    .links-box {
      padding: 2rem 1.5rem;
      border-radius: 12px;
    }
  
    .links-box h1 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  
    .link-list a {
      font-size: 1.05rem;
    }
  }
  
  @media (max-width: 480px) {
    .links-box {
      padding: 1.5rem 1.2rem;
    }
  
    .links-box h1 {
      font-size: 1.3rem;
    }
  
    .link-list li {
      margin-bottom: 1rem;
    }
  
    .link-list a {
      font-size: 1rem;
    }
  }
  