header {
    display: none !important;
  }  

/* Two-column layout */
.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
  }
  
  .left-column {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  
  .right-column {
    flex: 3;
    min-width: 300px;
    padding: 1rem;
  }
  
  .left-column h1,
  .left-column p {
    margin: 0 0 0.5rem 0;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
  }
  
  th, td {
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    text-align: left;
  }
  
  th {
    background-color: #f0f0f0;
  }
  
  @media (max-width: 768px) {
    .two-column {
      flex-direction: column;
    }
  
    .left-column, .right-column {
      max-width: 100%;
    }
  }
  
  footer, .footer, #footer {
    display: none !important;
    visibility: hidden !important;
  }