/* Start custom CSS for html, class: .elementor-element-65a1271 */<style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --orange:    #F47B20;
      --orange-dk: #C96400;
      --orange-lt: #FF9A3C;
      --black:     #000000;
      --white:     #ffffff;
      --body-text: #C6C6C6;
      --card-bg:   #0D1C2A;
      --nav-h:     88px;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      background-color: var(--black);
      color: var(--body-text);
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
 
    img { max-width: 100%; display: block; }
    a { text-decoration: none; }
 
    .label {
      font-family: 'Lato', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 28px;
    }
 
    /* ─── SCROLL ANIMATION ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }
    .fade-up.delay-4 { transition-delay: 0.4s; }
 
    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
    }
 
    /* ══════════════════════════════
       NAV
    ══════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .nav.scrolled {
      background: rgba(0,0,0,0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.5);
    }
    .nav__logo img {
      height: 52px;
      width: auto;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav__links li a {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color 0.2s;
    }
    .nav__links li a:hover,
    .nav__links li.active a { color: var(--white); }
    .nav__right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav__social {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav__social a {
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
      display: flex;
    }
    .nav__social a:hover { color: var(--white); }
    .nav__social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }
    .nav__cta {
      display: inline-flex;
      align-items: center;
      padding: 10px 24px;
      background: var(--orange);
      color: var(--black);
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 100px;
      transition: opacity 0.2s;
    }
    .nav__cta:hover { opacity: 0.85; }
    /* ── NAV DROPDOWN ── */
    .nav__item-drop { position: relative; }
    .nav__drop-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: default;
    }
    .nav__drop-arrow {
      width: 9px; height: 9px;
      stroke: currentColor; fill: none;
      stroke-width: 2.5;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }
    .nav__item-drop:hover .nav__drop-arrow { transform: rotate(180deg); }
    .nav__drop-menu {
      position: absolute;
      top: calc(100% + 20px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: rgba(5,5,5,0.98);
      border: 1px solid rgba(255,255,255,0.07);
      border-top: 2px solid var(--orange);
      min-width: 230px;
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
      box-shadow: 0 20px 48px rgba(0,0,0,0.7);
    }
    .nav__item-drop:hover .nav__drop-menu {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .nav__drop-menu a {
      display: flex !important;
      align-items: center;
      gap: 9px;
      padding: 9px 18px;
      font-family: 'Lato', sans-serif !important;
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: 0.14em !important;
      text-transform: uppercase !important;
      color: rgba(255,255,255,0.55) !important;
      transition: color 0.15s, padding-left 0.15s !important;
    }
    .nav__drop-menu a::before {
      content: '';
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
      opacity: 0;
      transition: opacity 0.15s;
    }
    .nav__drop-menu a:hover { color: var(--white) !important; padding-left: 24px; }
    .nav__drop-menu a:hover::before { opacity: 1; }
    .nav__drop-menu a.active-page { color: var(--orange) !important; }
    .nav__drop-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }
 
    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      padding: 220px 80px 100px;
      background: var(--black);
      position: relative;
      overflow: hidden;
      min-height: 620px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Hero image — right side */
    .hero__visual {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 55%;
      pointer-events: none;
      overflow: hidden;
    }
 
    .hero__visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--black) 0%, rgba(0,0,0,0.5) 45%, transparent 100%);
      z-index: 1;
    }
 
    .hero__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      filter: grayscale(15%) brightness(0.6);
    }
 
    .hero__label {
      font-family: 'Lato', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
 
    .hero__headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(50px, 6.5vw, 90px);
      font-weight: 800;
      line-height: 1.05;
      max-width: 720px;
      text-transform: none;
      background: linear-gradient(135deg, #C96400 0%, #F47C20 45%, #FF9A3C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
      text-wrap: balance;
      letter-spacing: -0.02em;
    }
 
    .hero__excerpt {
      font-size: 19px;
      font-weight: 600;
      color: var(--white);
      max-width: 800px;
      line-height: 1.65;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
 
    .hero__sub {
      font-size: 17px;
      color: var(--body-text);
      max-width: 750px;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
 
    /* ══════════════════════════════
       INTRO
    ══════════════════════════════ */
 
    .intro {
      padding: 80px 80px;
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
 
    .intro__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch;
    }
 
    .intro__headline {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      text-transform: none;
      text-align: center;
      text-wrap: balance;
    }
 
    .intro__body p {
      font-size: 17px;
      color: var(--body-text);
      line-height: 1.8;
      margin-bottom: 16px;
      text-align: justify;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
 .elementor-page .sk__page-title { display: none;}
    .intro__body p:last-child { margin-bottom: 0; }
 
    .intro__right {
      display: flex;
      flex-direction: column;
    }
 
    .intro__img {
      width: 100%;
      flex: 1;
      min-height: 400px;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.7) grayscale(15%);
      border-radius: 2px;
      display: block;
    }
 
    /* ══════════════════════════════
       STATS
    ══════════════════════════════ */
    .stats {
      padding: 60px 80px;
      background: var(--card-bg);
      border-top: 3px solid var(--orange);
    }
 
    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
 
    .stat {
      text-align: center;
      padding: 0 40px;
      border-left: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
 
    .stat:first-child { border-left: none; }
 
    .stat__number {
      font-size: clamp(40px, 5vw, 68px);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      display: block;
      margin-bottom: 10px;
    }
 
    .stat__label {
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--body-text);
      letter-spacing: 0.04em;
      line-height: 1.4;
      max-width: 160px;
    }
 
    /* ══════════════════════════════
       HOW IT WORKS
    ══════════════════════════════ */
    .how {
      padding: 100px 80px;
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
 
    .how__header {
      text-align: center;
      margin-bottom: 72px;
    }
 
    .how__headline {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      text-transform: none;
      margin-bottom: 16px;
      text-wrap: balance;
    }
 
    .how__sub {
      font-size: 17px;
      color: var(--body-text);
      max-width: 700px;
      line-height: 1.8;
      margin: 0 auto;
    }
 
    .process-flow {
      display: flex;
      gap: 0;
      align-items: flex-start;
      position: relative;
    }
 
    .process-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }
 
    .process-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 28px;
      right: -1px;
      width: 50%;
      height: 2px;
      background: rgba(244,123,32,0.25);
    }
 
    .process-step:not(:first-child)::before {
      content: '';
      position: absolute;
      top: 28px;
      left: -1px;
      width: 50%;
      height: 2px;
      background: rgba(244,123,32,0.25);
    }
 
    .process-step__num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--orange);
      color: var(--black);
      font-family: 'Lato', sans-serif;
      font-size: 18px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
 
    .process-step__title {
      font-size: 15px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      text-transform: none;
      padding: 0 8px;
    }
 
    .process-step__body {
      font-size: 14px;
      color: var(--body-text);
      line-height: 1.75;
      padding: 0 4px;
    }
 
    /* ══════════════════════════════
       PARALLAX
    ══════════════════════════════ */
    .parallax {
      height: 420px;
      background-image: url('https://pcgloballogistics.com/wp-content/uploads/2026/07/pc-global-logistics-full-truckload.webp');
      background-attachment: fixed;
      background-position: center 40%;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
 
    .parallax::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.68);
    }
 
    .parallax__content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 80px;
      max-width: 900px;
    }
 
    .parallax__quote {
      font-size: clamp(22px, 3vw, 38px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.35;
      margin-bottom: 24px;
    }
 
    .parallax__attr {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
    }
 
    /* ══════════════════════════════
       TABLE SECTION
    ══════════════════════════════ */
   .table-section {
      padding: 100px 80px;
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
 
    .table-section__header {
      margin-bottom: 48px;
      text-align: center;
    }
 
    .table-section__headline {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      text-transform: none;
      margin-bottom: 16px;
    }
 
    .table-section__sub {
      font-size: 17px;
      color: var(--body-text);
      max-width: 720px;
      line-height: 1.8;
      margin: 0 auto;
    }
 
    .data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }
 
    .data-table thead tr { background: var(--orange); }
 
    .data-table thead th {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
      padding: 16px 24px;
      text-align: center;
      font-weight: 800;
    }
 
    .data-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s;
    }
 
    .data-table tbody tr:hover { background: rgba(13,28,42,0.6); }
    .data-table tbody tr.highlight { background: rgba(244,123,32,0.06); border-left: 3px solid var(--orange); }
 
    .data-table tbody td {
      padding: 18px 24px;
      color: var(--body-text);
      vertical-align: middle;
      text-align: center;
    }
 
    .data-table tbody td:first-child { color: var(--white); font-weight: 700; }
 
    .badge {
      display: inline-block;
      background: var(--orange);
      color: var(--black);
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
      margin-left: 8px;
    }
 
    .check { color: var(--orange); font-weight: 700; font-size: 17px; }
 
    /* ══════════════════════════════
       WHY PC GLOBAL
    ══════════════════════════════ */
    .why {
      padding: 100px 80px;
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
 
    .why__header {
      margin-bottom: 64px;
      text-align: center;
    }
 
    .why__headline {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      text-transform: none;
      margin-bottom: 16px;
      text-wrap: balance;
    }
 
    .why__sub {
      font-size: 17px;
      color: var(--body-text);
      max-width: 720px;
      line-height: 1.8;
      margin: 0 auto;
    }
 
    .why__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
 
    .why-card {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.04);
      border-top: 3px solid var(--orange);
      padding: 40px 32px;
      text-align: center;
    }
 
    .why-card__title {
      font-size: clamp(18px, 1.8vw, 22px);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
      text-transform: none;
    }
 
    .why-card__body {
      font-size: 17px;
      color: var(--body-text);
      line-height: 1.75;
    }
 
    .why-card__body a {
      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
 
    /* ══════════════════════════════
       FAQ
    ══════════════════════════════ */
    .faq {
      padding: 100px 80px;
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
 
    .faq__header {
      margin-bottom: 56px;
      text-align: center;
    }
 
    .faq__headline {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      text-transform: none;
    }
 
    .faq__list { max-width: 900px; margin: 0 auto; }
 
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
 
    .faq-item__q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 28px 0;
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      transition: color 0.2s;
      text-transform: none;
    }
 
    .faq-item__q:hover { color: var(--orange); }
 
    .faq-item__q .arrow {
      width: 28px;
      height: 28px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s, border-color 0.2s;
    }
 
    .faq-item.open .faq-item__q { color: var(--orange); }
    .faq-item.open .arrow { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: var(--black); }
 
    .faq-item__a {
      display: none;
      padding: 0 0 28px;
      font-size: 17px;
      color: var(--body-text);
      line-height: 1.8;
      max-width: 780px;
    }
 
    .faq-item__a a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
    .faq-item.open .faq-item__a { display: block; }
 
    /* ══════════════════════════════
       CTA
    ══════════════════════════════ */
    .cta {
      padding: 100px 80px;
      background: var(--orange);
    }
 
    .cta__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
 
    .cta__label {
      font-family: 'Lato', sans-serif;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.55);
      display: block;
      margin-bottom: 28px;
    }
 
    .cta__headline {
      font-size: clamp(38px, 4.5vw, 62px);
      font-weight: 800;
      color: var(--black);
      line-height: 1.05;
      margin-bottom: 20px;
      text-transform: none;
      text-wrap: balance;
    }
 
    .cta__body {
      font-size: 17px;
      color: rgba(0,0,0,0.75);
      line-height: 1.8;
    }
 
    .cta__actions { display: flex; flex-direction: column; gap: 16px; }
 
    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 36px;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 100px;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.15s ease;
      text-align: center;
    }
 
    .btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn--dark { background: #0D0D0D; color: var(--white); border: 2px solid #0D0D0D; }
    .btn--outline { background: transparent; color: #0D0D0D; border: 2px solid #0D0D0D; }
 
    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer {
      background: #050505;
      border-top: 3px solid var(--orange);
      padding: 80px 80px 36px;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 64px;
      margin-bottom: 56px;
    }
    .footer__logo { height: 44px; width: auto; margin-bottom: 20px; }
    .footer__brand p {
      font-size: 13px;
      color: var(--body-text);
      line-height: 1.8;
      max-width: 260px;
    }
    .footer__col h4 {
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 18px;
    }
    .footer__col ul { list-style: none; }
    .footer__col li { margin-bottom: 9px; }
    .footer__col a {
      font-size: 13px;
      color: var(--body-text);
      transition: color 0.2s;
    }
    .footer__col a:hover { color: var(--white); }
    .footer__address {
      font-size: 13px;
      color: var(--body-text);
      line-height: 1.7;
    }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer__copy { font-size: 11px; color: rgba(198,198,198,0.25); }
    .footer__legal a {
      font-size: 11px;
      color: rgba(198,198,198,0.25);
      margin-left: 20px;
      transition: color 0.2s;
    }
    .footer__legal a:hover { color: var(--body-text); }
 
    /* ══════════════════════════════
       RESPONSIVE — TABLET 1024px
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .hero, .intro, .how, .table-section, .why, .faq, .cta { padding: 80px 40px; }
      .stats { padding: 48px 40px; }
      .hero { padding-top: 140px; }
      .hero__visual { width: 50%; }
      .intro__grid { gap: 48px; }
      .why__grid { grid-template-columns: repeat(2, 1fr); }
      .parallax { background-attachment: scroll; }
      .parallax__content { padding: 0 40px; }
      .footer { padding: 60px 40px 28px; }
      .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .nav { padding: 0 32px; }
      .nav__links { gap: 24px; }
    }
 
    /* ══════════════════════════════
       RESPONSIVE — MOBILE 768px
    ══════════════════════════════ */
    @media (max-width: 768px) {
      .hero, .intro, .how, .table-section, .why, .faq, .cta { padding: 60px 24px; }
      .stats { padding: 40px 24px; }
      .hero { padding-top: 120px; min-height: auto; }
      .hero__visual { display: none; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .stat { padding: 20px 20px; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
      .stat:first-child, .stat:nth-child(2) { border-top: none; }
      .stat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,0.1); }
      .intro__grid { grid-template-columns: 1fr; }
      .intro__img { height: 260px; min-height: auto; order: -1; }
      .process-flow { flex-direction: column; gap: 32px; }
      .process-step:not(:last-child)::after { display: none; }
      .process-step:not(:first-child)::before { display: none; }
      .process-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
      .process-step__num { flex-shrink: 0; margin-bottom: 0; }
      .process-step__title, .process-step__body { padding: 0; }
      .why__grid { grid-template-columns: 1fr; }
      .parallax { height: 320px; background-attachment: scroll; }
      .parallax__content { padding: 0 24px; }
      .cta__grid { grid-template-columns: 1fr; gap: 40px; }
      .btn { width: 100%; }
      .faq-item__q { font-size: 16px; }
      .data-table { font-size: 13px; }
      .data-table thead th, .data-table tbody td { padding: 12px 14px; }
      .footer { padding: 48px 20px 24px; }
      .footer__top { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
      .nav { padding: 0 20px; }
      .nav__links { display: none; }
    }
  </style>/* End custom CSS */