.footer-logo-container {
    display: flex;
    align-items: center;
    /* Align items vertically */
    justify-content: center;
    /* Center items horizontally */
    gap: 0.5rem;
    /* Spacing between the logos */
  }

  .footer-logo {
    object-fit: contain;
    /* Ensures proper aspect ratio */
  }

  .footer-logo-icon {
    max-width: 60px;
    /* Adjust width for the icon */
    max-height: 70px;
    /* Adjust height for the icon */
  }

  .footer-logo-name {
    margin-left: -9px;
    max-width: 300px;
    /* Adjust width for the name logo */
    max-height: 70px;
    /* Adjust height for the name logo */
  }

  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .footer-logo-container {
      flex-direction: column;
      /* Stack items vertically */
      gap: 1rem;
      /* Add space between rows */
    }

    .footer-logo-icon {
      max-height: 70px;
      /* Adjust height for smaller screens */
    }

    .footer-address {
      text-align: center;
      letter-spacing: 0.5px;
    }

    .footer-logo-name {
      max-height: 280px;
    }
  }

  @media (max-width: 768px) {
  .nav-menu-wrapper {
      margin-top: -5px;
      padding-bottom: 28px;
    }
  }