.footer {
    background-color: #082f47; /* Dark color HEY*/
    font-family: sans-serif;
    letter-spacing: 0.05em;
  }

  .footer-content {
    padding: 3.5rem 1.5rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

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

  @media (min-width: 1024px) {
    .footer-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  .footer-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff; /* White color */
    font-family: "EB Garamond", serif;
  }

  .footer-section p,
  .footer-section a {
    color: #fdfdfd;
    font-size: 0.875rem;
  }

  .footer-section a:hover {
    color: #ffffff; /* White color on hover */
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding: 10px 0 10px 0;
    text-align: center;
    background-color: (--dark-color);
  }

  .footer-bottom p {
    color: #fdfdfd;
    font-size: 0.875rem;
  }
