
  h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  
  h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.2em;
  }
  
  ul {
    margin-left: 20px;
  }

  
  /* Links */
  a {
    color: #0066cc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Layout */
  .legal {
    max-width: 1200px;
    margin: 0px auto;
    width: 100%;
  }
  
  .legal-container {
    display: flex;
    margin: 0 auto;
  }
  
  .legal-content {
    margin-bottom: 50px;
  }
  
  .in-brief {
    margin-left: 200px;
  }
  
  .content {
    flex-grow: 1;
    padding: 20px;
  }
  
  /* Sidebar */
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .sidebar a {
    display: block;
    padding: 10px;
    color: #0066cc;
    text-decoration: none;
  }
  
  .sidebar a:hover {
    background-color: #ddd;
    text-decoration: underline;
  }
  
  /* Scroll Progress */
  .scroll-progress-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .progress-ring__circle {
    transition: stroke-dashoffset 0.15s;
    transform: rotate(0deg);
    transform-origin: center;
    stroke: rgba(37, 211, 102);
  }
  
  /* Back to Top Button */
  #backToTop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 102, 255, 0.75);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
    will-change: transform, opacity;
  }
  
  #backToTop:hover {
    background-color: #0056b3;
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  #backToTop.show {
    display: block;
    animation: bounceIn 0.5s ease;
  }
  
  /* Animation */
  @keyframes bounceIn {
    0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 0;
    }
    60% {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
  