  .footer-bg-white {
        background-color: #ffffff;
      }
      .footer-bg-dark {
        background-color: #0d1218;
      }
      .footer-container {
        max-width: 1112px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .footer-logo-wrapper {
        width: 142px;
        height: 2rem;
      }
      .footer-logo-img {
        height: 100%;
        width: 100%;
      }
      .footer-grid-main {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 2rem;
      }
      .footer-links-grid {
        display: grid;
        gap: 0.25rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .footer-links-list {
        color: rgb(209, 213, 219);
        list-style-type: none;
      }
      .footer-links-list li:not(:first-child) {
        margin-top: 0.25rem;
      }
      .footer-link-item {
        white-space: nowrap;
        font-family: Roboto, sans-serif;
        font-size: 0.875rem; /* 14px */
        font-weight: 400;
        line-height: 1.75rem; /* 28px */
      }
      .footer-link-anchor {
        transition-property: all;
        transition-duration: 200ms;
        text-decoration: none;
        color: #62728c;
      }
      .footer-link-anchor:hover {
        color: #ffffff;
      }
      .footer-social-container {
        margin-bottom: 1.75rem; /* 28px */
      }
      .footer-heading {
        color: #ffffff;
        font-family: Roboto, sans-serif;
        font-size: 0.875rem; /* 14px */
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 0;
      }
      .footer-heading-social {
        margin-bottom: 0.75rem; /* 12px */
      }
      .footer-social-list {
        display: flex;
        gap: 1rem;
        list-style: none;
      }
      .footer-address-text {
        margin-top: 14px;
        color: #62728c;
        font-family: Roboto, sans-serif;
        font-size: 0.875rem; /* 14px */
        font-weight: 400;
        line-height: 20px;
      }

      @media (min-width: 768px) {
        .footer-grid-main {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }