  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      min-height: 100vh;
      width: 100vw;
      display: flex;
      font-family: 'Barlow', sans-serif;
  }

.card {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
      
}

  /* LEFT */
  .left {
      background: #ffffff;
      padding: 10% 11%;
      display: flex;
      flex-direction: column;

      
  }

  .brand-title {
      font-size: 2em;
  }

.brand-name {
    display: inline-block;
    background: #1a3530;
    color: #39FF14;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2em;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 6px;
    padding: 0.1em 0.3em;
}

  .brand-sub {
      font-weight: 400;
      color: #444;
      padding-left: 2px;
  }

.services {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    gap: 0.45em;
}

  .services span,
  .services a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2em;
      font-weight: 700;
      color: #39FF14;
      text-decoration: none;
      letter-spacing: 0.03em;
      text-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
      transition: text-shadow 0.2s;
      line-height: 60px;
  }

  .services a:hover {
      text-shadow: 0 0 18px rgba(57, 255, 20, 0.55);
  }

  /* RIGHT */
  .right {
      background: #122320;
      padding: 10% 11%;
      display: flex;
      flex-direction: column;
      


  }

  .fuel-types {
      display: flex;
      flex-direction: column;
      margin: auto 0;
      gap: 0;
  }

  .fuel-types span {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #39FF14;
      letter-spacing: 0.06em;
      line-height: 1.2;
  }

  .contact {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .contact a {
    font-size: 1.2em;
      font-weight: 300;
      color: #a0c0bb;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
  }

  .contact a:hover {
      color: #39FF14;
  }

  /* @media (max-width: 560px) {
      body { padding: 1.5rem; align-items: flex-start; padding-top: 3rem; }
      .card { grid-template-columns: 1fr; aspect-ratio: unset; width: 100%; }
      .left, .right { padding: 2rem 1.8rem; }
      .fuel-types span { font-size: 3rem; }
    } */