    /* ───────────────────────────────────────────
       STICKY CARD
    ─────────────────────────────────────────── */
    .get-in-touch {
      padding: 0 0 0 40px;
      border-left: 2px solid rgba(17, 24, 39, 0.1);
    }
 
    /* ───────────────────────────────────────────
       HEADING
    ─────────────────────────────────────────── */
    .get-in-touch__heading-wrapper {
      margin-bottom: 24px;
      padding-bottom: 0;
    }
 
    .get-in-touch__heading {
      color: #000;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 1.3;
      letter-spacing: 0;
      padding: 0;
      margin: 0;
    }
 
    /* ───────────────────────────────────────────
       ROWS
    ─────────────────────────────────────────── */
    .get-in-touch__rows {
      display: flex;
      flex-direction: column;
      gap: 18px 0;
    }
 
    .get-in-touch__row {
      display: flex;
      align-items: flex-start;
      gap: 0;
      padding: 0;
      border-top: 0;
    }
 
    .get-in-touch__row-label {
      flex: 0 0 160px;
      color: #000;
      padding: 0;
      margin: 0;
      font-family: Inter;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 0;
    }
 
    .get-in-touch__row-value {
      flex: 1;
    }
 
    .get-in-touch__row-value p {
      color: #000;
      padding: 0;
      margin: 0;
      font-family: Inter;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 0;
    }
 
    a.get-in-touch__phone-link {
      color: #000;
      font-family: Inter;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 0;
      text-decoration: none;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
    }
 
    a.get-in-touch__phone-link:hover {
      color: #0d5aff;
    }
 
    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .get-in-touch {
        position: static;
        padding: 8px 0 8px 20px;
      }
 
      .get-in-touch__row-label {
        flex: 0 0 120px;
        /*! font-size: 14px; */
      }
 
      .get-in-touch__row-value p,
      a.get-in-touch__phone-link {
        /*! font-size: 14px; */
      }
    }
