
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:       #1B6EC2;
      --blue-light: #E9F1F9;
      --blue-mid:   #4A90D9;
      --bg:         #E9F1F9;
      --white:      #ffffff;
      --text-1:     #1a2640;
      --text-2:     #4a5568;
      --text-3:     #8a9ab5;
      --red:        #C0392B;
      --radius:     18px;
    }
    

    body {
      height: 100vh;
      background: var(--bg);
      font-family: 'Poppins', sans-serif;
      color: var(--text-1);
      display: flex;
      flex-direction: column;
    }

   
    .navbar {
      padding: 22px 48px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .main {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 8px 24px 16px;
    }

    .card {
      flex: 0 0 65%;
      background: var(--white);
      border-radius: var(--radius);
      padding: 52px 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      align-self: stretch;
      justify-content: center;
    }

    .wrench-icon {
      width: 72px;
      height: 72px;
      background: var(--blue-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }

    .wrench-icon svg {
      width: 34px;
      height: 34px;
    }

    .card h1 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-1);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .card p.lead {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-2);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 32px;
    }

    .card-divider {
      width: 65%;
      height: 2px;
      background: #e8edf5;
      margin-bottom: 28px;
    }

    .info-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 14px 20px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-1);
      margin-bottom: 12px;
    }

    .info-row:last-child { margin-bottom: 0; }

    .info-row.plain {
      background: transparent;
    }

    .info-row.shaded {
      background: var(--bg);
    }

    .info-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-icon.blue {
      background: var(--blue-light);
    }

    .info-icon.blue-solid {
      background: var(--blue);
    }

    .info-icon svg {
      width: 20px;
      height: 20px;
    }

    .illustration {
      flex: 1.5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding-left: 24px;
      align-self: stretch;
    }

    .illustration img {
        height: 90%;
        width: 90%;
        object-fit: contain;
    }

    .footer {
      background: var(--bg);
      padding: 18px 24px;
    }

    .footer-inner {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 18px 0;
        border-top: 2px solid #cdd4dc;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .footer-logo-icon {
      width: 44px;
      height: 44px;
    }

    .footer-logo-text {
      font-size: 13px;
      font-weight: 800;
      color: var(--red);
      text-transform: uppercase;
      line-height: 1.2;
      letter-spacing: 0.04em;
    }

    .footer-sep {
      width: 1px;
      height: 36px;
      background: var(--bg);
      margin: 0 8px;
    }

    .footer-info {
      font-size: 13px;
      color: var(--text-2);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .main { flex-direction: column; padding: 16px 20px 32px; align-items: stretch; }
      .illustration { display: flex; width: 100%; padding-left: 0; justify-content: center; margin-top: 24px; }
      .card { flex: none; width: 100%; padding: 36px 28px; }
      .navbar { padding: 16px 20px; }
      .footer { padding: 16px 20px; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
  .card {
    flex: 0 0 50%;
    padding: 20px 24px;
  }

  .illustration {
    flex: 1.5;
  }

  .illustration img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}