
  

  .table-of-contents {
    background-color: rgba(201, 75, 75, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .table-of-contents h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .table-of-contents ol {
    list-style-type: none;
    counter-reset: item;
    margin-left: 0;
  }

  .table-of-contents ol li {
    counter-increment: item;
    margin-bottom: 0.5rem;
  }

  .table-of-contents ol li::before {
    content: counter(item, upper-roman) ". ";
    color: var(--primary-color);
    font-weight: bold;
  }

  .table-of-contents a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
  }

  .table-of-contents a:hover {
    color: var(--primary-color);
  }

  .regulation-item {
    margin-bottom: 0.75rem;
  }
  

  
  h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .policy-section {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
  }
  
  h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }
  
  .highlight {
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
  }

  .contact-info {
    background-color: rgba(201, 75, 75, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
  
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }

  .definition {
    margin-bottom: 0.75rem;
  }

  .definition strong {
    color: var(--text-light);
  }

  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0.7;
  }

  .back-to-top:hover {
    background-color: var(--primary-hover);
    opacity: 1;
  }

  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
    
    .policy-section {
      padding: 1.5rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
  }