*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden; 
  }
  
  body {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #1F112D;
    min-height: 100vh;
    overflow-x: hidden;
    background: #E9F3F7;
  }

  :root {
    --color-bg-start: #1A2B81;
    --color-bg-end: #26CDCD;
    --color-text: #E9F3F7;
    --color-card-bg: #E9F3F7;
    --color-card-text: #1D2C6E;
    --color-footer-bg: #1F112D;
    --color-faq-bg: #E9F3F7;
    --shadow-title: 0px 6px 8px rgba(0, 0, 0, 0.4);
    --border-radius-card: 16px;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 160px;
    background: #E9F3F7;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 243, 247, 0.1);
  }
  
  @media (max-width: 1200px) {
    .navbar { padding: 16px 40px; }
  }
  
  @media (max-width: 768px) {
    .navbar { padding: 14px 20px; }
  }
  
  .nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 8px;
    min-width: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  
  .nav-links a {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #1F112D;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
  }
  
  .nav-links a:hover { opacity: 1; }
  
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #1F112D;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  @media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 20px;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: #E9F3F7;
      padding: 24px 20px;
      border-bottom: 1px solid rgba(233,243,247,0.1);
    }
    .nav-links.open { display: flex; }
  }
h1{
font-size: 52px; font-weight: 900; margin-top: 100px; margin-left: 50px;
}
  h2{
    font-weight: 700;
    font-size: 28px;
  }

  p, li {
    font-size: 20px;
    font-weight: 400;
  }
  section{
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
  }
  .footer {
    background: var(--color-footer-bg);
    border-top: 1px solid rgba(233,243,247,0.15);
  }
  
  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 160px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .footer-links a {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  
  .footer-links a:hover { opacity: 1; }
  
  .footer-copy {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.5;
    text-align: center;
  }
  
  @media (max-width: 1200px) {
    .footer-inner { padding: 40px 40px 16px; }
  }
  
  @media (max-width: 768px) {
    .footer-inner { padding: 32px 20px 16px; gap: 24px; }
    .footer-links { gap: 20px; }
  }   
  @media (max-width: 900px) {
    h1{
        font-size: 40px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
    }
    h2{ font-size: 16px; }
    
      p, li {
        font-size: 12px;
      }
      section{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
      }
  }
