/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    background: #ffffff;
  }
  
  /* ===== NAVBAR ===== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 80px;
    border-bottom: 1px solid #eee;
    background: white;
  }
  
  /* ===== LOGO ===== */
  .logo img {
    height: 84px;
    width: auto;
    display: block;
  }
  
  /* ===== NAV LINKS ===== */
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-links a {
    margin-left: 32px;
    text-decoration: none;
    color: #1f2d3d;
    font-size: 16.5px;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* ===== PAGE CONTENT (FOR YOUR INTERIOR PAGES) ===== */
  .content {
    max-width: 820px;
    margin: 100px auto;
    padding: 0 24px;
  }
  
  .content h1 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .content h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 600;
  }
  
  .content p {
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
  }