 /* ---------- GENERAL ---------- */
  body {
    font-family: briidge_font_17, briidge_font_23, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.75;
    background: #f8f9fc;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  main {
    max-width: 1300px;
    margin: 2rem auto 4rem;
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
    margin-left: 150px;
    flex-wrap: wrap;
  }

  /* ---------- ARTICLE ---------- */
  article {
    flex: 4.6;
    background: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    margin-left: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
    max-width: 1000px;
  }
  article:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  article hr {
    margin: 2.5rem auto;
    width: 40%;
    border: none;
    border-top: 1px solid rgba(160,160,160,0.3);
  }

  h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  h2 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
  }

  h3 {
    margin-top: 1.7rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
  }

  p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",inter, briidge_font_23, "Segoe UI", Helvetica, sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    color: #333;
    max-width: 95%;
    letter-spacing: 0.01em;
  }

  /* ---------- TABLE ---------- */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 10px #ececec;
  }
  table th, table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 1rem;
    color: #424242;
    text-align: left;
  }

  /* ---------- BRANDING ---------- */
  .branding {
    width: 100%;
    background-color: #001122;
    padding: 1.5rem 0 1rem;
    color: #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .branding-inner {
    max-width: 1300px;
    margin-left: 150px;
    padding-left: calc(2rem + 2.5rem);
    position: relative;
  }
  .branding h1 a {
    font-size: 2.7rem;
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
  }
  .branding h1 a:hover {
    color: #aec8ff;
  }
  .branding h2 {
    color: #dbe2ee;
    font-weight: 400;
    margin: 4px 0 0;
    font-size: 1.125rem;
  }
  .branding h3 {
    color: #a0aec0;
    margin: 1px 0 0;
    font-weight: 300;
    font-size: 0.9rem;
  }

  /* CTA button at top */
  .explore-btn {
    position: absolute;
    top: 22px;
    right: 25px;
    background-color: #3454A1; /*#dbe2ee;*/
    color: white;/*#1a202c;*/
    font-family: briidge_font_17, briidge_font_23, "Segoe UI", sans-serif;
    font-size: 16px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .explore-btn:hover {
    /*background-color: #cfd7e6;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);*/
    background-color: #2B477F;
    box-shadow: 0 8px 24px rgba(21, 62, 117, 0.35);
  }

  /* ---------- SIDEBAR ---------- */
  aside {
    flex: 1.4;
    position: sticky;
    top: 2rem;
    align-self: start;
    background: white;
    color: #1a1a1a;
    padding: 1rem 1.8rem;
    border-radius: 10px;
    max-width: 320px;
    margin-left: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  aside h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.07em;
  }
  aside ul {
    padding: 0;
    list-style: none;
    margin: 0;
  }
  aside li {
    margin-bottom: 1.25rem;
  }
  aside a {
    font-size: 0.9rem;
    color: #2c3e50;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
  }
  aside a:hover {
    border-bottom-color: #0a3d62;
    color: #0a3d62;
  }

  /* ---------- CTA SECTION ---------- */
  .section.cta {
    /*background-color: #e4edff;*/
    background-color:black;
    padding: 55px 30px;
    text-align: center;
    margin-top: 3.2rem;
    border-radius: 10px;
    border-top: 3px solid #9bbfff;
    border-bottom: 3px solid #9bbfff;
    box-shadow: 0 4px 18px rgba(13, 71, 161, 0.15);
  }
  .section.cta h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    /*color: #153b8e;*/
    color:#aec8ff;;
  }
  .section.cta p {
    font-size: 1.15rem;
    margin: 8px 0;
    /*color: #1c3d7a;*/
    color:#aec8ff;;
  }
  .section.cta a {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 32px;
    background-color: #1e40af;
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.3);
  }
  .section.cta a:hover {
    background-color: #153e75;
    box-shadow: 0 8px 24px rgba(21, 62, 117, 0.35);
  }

  /* ---------- FOOTER ---------- */
  footer {
    background-color: #000814;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  footer a {
    color: #a1c4fd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  footer a:hover {
    color: #f0f7ff;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    main {
      flex-direction: column;
      max-width: 95vw;
      margin-left: 0;
      padding: 0 1rem;
    }
    .explore-btn {
      display: none;
    }
    article {
      margin-left: 0;
      padding: 0.5rem ;
    }
    aside {
      margin-top: 2rem;
      max-width: 100%;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: none;
      position: static;
    }
    .branding-inner {
      margin-left: 0 !important;
      padding: 0 1.2rem !important;
    }
    .branding h1 a { font-size: 2rem; }
    h1 { font-size: 1.7rem; }
    h2 { margin-top: 1.5rem; }  
    h3 { margin-top: 1.3rem;  }  
  }