
      html,
      body,
      div,
      h1,
      h2,
      h3,
      p,
      img,
      a,
      section,
      article,
      header,
      footer {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        padding: 2rem;
        padding-top: 120px; /* Offset for fixed banner */
        line-height: 1.6;
        background-color: #ffffff;
        color: #333333;
      }
      h1,
      h2,
      h3 {
        color: #2c3e50;
      }

      /* Banner Styles */

      .banner {
        display: flex;
        align-items: center;
        background-color: #ffc2d9;
        position: fixed;
        top: 0;
        left: 0; /* Ensure starts at the very left */
        width: 100vw; /* Full viewport width */
        z-index: 1000;
        padding: 10px 0; /* Removed horizontal padding */
      }

      .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .banner-inner {
        display: flex;
        align-items: center;
        padding-left: 2rem; /* Matches body left padding */
      }

      .banner-logo {
        height: 60px;
        margin-right: 15px;
        border-radius: 10px;
      }

      .banner-text h1 {
        font-size: 24px;
        color: #aa445f;
        margin-bottom: 4px;
      }

      .banner-text p {
        font-size: 14px;
        color: white;
      }

      .highlight {
        background: linear-gradient(
          to right,
          #458cd8,
          #646be6,
          #7c6a9a,
          #c25dd8,
          #f151ae,
          #d6655f,
          #e4628a,
          #ef7f58,
          #dc9055
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
      }
