    body {
      font-family: -apple-system, BlinkMacSystemFont, "Arial", "Open Sans", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
      margin: 0;
      background: #f5f7fa;
    }

    .am-nav {
      background: #173048;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: left;
      flex-wrap: wrap;

      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }

    .am-nav a {
      color: white;
      text-decoration: none;
      white-space: nowrap;
      line-height: 3;
      margin-left: 35px;
    }

    .am-container {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 1rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .am-container p {
      line-height: 1.7;
      overflow-x: auto;
    }

    h1 {
      color: #173048;
      border-left: 5px solid #173048;
      padding-left: 1rem;
    }

    .am-cta {
      background: #173048;
      color: white;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 30px;
      font-size: 1.2rem;
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
      margin-top: 1rem;
    }

    .am-cta:hover {
      background: #0f2c3d;
    }

    footer {
      text-align: center;
      padding: 2rem;
      color: #666;
    }

    .image-container {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .image-container img,
    .image-container video {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    * {
      scrollbar-width: thin;
      scrollbar-color: #00000033;
    }

    *::-webkit-scrollbar,
    *::-webkit-scrollbar:horizontal {
      width: 3px;
      height: 3px;
      background-color: #00000033;
    }

    *::-webkit-scrollbar-thumb {
      background: #888888;
    }