.custom-height {
    height: 700px;
    width: 100%;
    margin-top: 60px;
}  
:root {
      --bg: #F5F9FD;
      --ink: #121212; /* heading color */
      --muted: #2F2F2F; /* body text color */
      --primary: #0056D2; /* accent for highlighted words */
      --container: 1440px;
  }

  * {
      box-sizing: border-box;
  }

  html, body {
      height: 100%;
      margin: 0;
  }

  body {
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-family: "Poppins", sans-serif;
  }

  /* Hero */
  .hero {
      min-height: 100svh;
      display: grid;
      align-items: stretch;
      background-image: url(../imgs/bg2.jpg);
      background-repeat: no-repeat;
      background-size: cover;
  }

  .hero-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 48px 20px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
  }

  .brand {
      position: absolute;
      left: 34px;
      top: 34px;
  }

      .brand img {
          height: 40px;
      }

  .brand-name {
      font: 600 22px/1.2 "Poppins", sans-serif;
      color: var(--ink);
  }

  .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .hero h1 {
      margin: 0 0 16px;
      color: var(--ink);
      font-family: "Cabin", sans-serif;
      font-weight: 600;
      font-size: clamp(36px, 5.2vw, 60px);
      line-height: clamp(48px, 6.8vw, 80px);
  }

      .hero h1 .highlight {
          color: var(--primary);
      }

  .hero p {
      margin: 0;
      color: var(--muted);
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      max-width: 62ch;
  }

  .hero-visual {
      display: grid;
      place-items: center;
  }

      .hero-visual img {
          width: 100%;
          max-width: 560px;
          height: auto;
      }

  /* Responsive */
  @media (max-width: 960px) {
      .hero-inner {
          grid-template-columns: 1fr;
          gap: 28px;
          padding-top: 24px;
      }

      .brand {
          margin-bottom: 24px;
      }
  }

footer {
    background-color: #292b33;
}