/* Prevent default padding */
main#main-content {
    padding-top: 0;
  }
  
  /* Push content below the dynamic header using the live CSS variable */
  .tm-header-container {
    padding-top: var(--header-height);
    position: relative;
    z-index: 0;
  }
  
  /* Fancy header block with SVG pattern background */
  .tm-section-header.tm-centered-header {
    max-width: auto;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--light-5);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .tm-section-header.tm-centered-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect fill='%23ebd19e' fill-opacity='0.03' width='50' height='50' x='50' y='50'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }
  
  .tm-section-header h1 {
    font-size: 2.5rem;
    font-family: var(--heading-font);
    color: var(--primary-accent);
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
  }
  
  .tm-header-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
  }
  
  /* General section styling */
  .section-padding {
    padding: 4rem 1rem;
  }
  
  .bg-light {
    background-color: var(--bg-light);
  }
  
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Policy content blocks */
  .policy-section {
    margin-bottom: 3rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--heading-font);
    margin-bottom: 1rem;
  }
  
  .policy-section p,
  .policy-section ul {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
  }
  
  .policy-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
  }
  
  .policy-section li {
    margin-bottom: 0.5rem;
  }
  
  .policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .policy-section a:hover {
    color: var(--primary-accent);
  }
  
  /* Contact button */
  .policy-section .btn {
    margin-top: 1rem;
  }
  
  /* Buttons styled per your system */
  .btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-5);
    border: none;
    padding: 0.8rem 1.6rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
  }
  
  .btn.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .tm-section-header h1 {
      font-size: 2rem;
    }
  
    .tm-header-subtitle {
      font-size: 1rem;
    }
  
    .policy-section h2 {
      font-size: 1.3rem;
    }
  
    .section-padding {
      padding: 3rem 1rem;
    }
  }

  .text-center {
    text-align: center;
    margin-top: 2rem;
  }
  