 /* Footer */
    .footer {
      background-color: var(--gray-dark);
      color: var(--white);
      padding-top: 4rem;
      padding-bottom: 2rem;
    }

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

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

    .footer-logo {
      font-family: 'Pacifico', cursive, serif;
      font-size: 1.875rem;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .footer-text {
      color: var(--gray-light);
      margin-bottom: 1.5rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social-link {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      background-color: #444;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition, background 0.2s, color 0.2s);
      color: var(--white);
      font-size: 1.25rem;
    }

    .footer-social-link:hover {
      background-color: var(--green-dark);
      color: var(--white);
    }

    .footer-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-link {
      color: var(--gray-light);
      transition: var(--transition, color 0.2s);
      text-decoration: none;
    }

    .footer-link:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .footer-contact-icon {
      width: 1.25rem;
      height: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      color: var(--green-dark);
      flex-shrink: 0;
      font-size: 1.2rem;
    }

    .footer-contact-text {
      color: var(--gray-light);
    }

    .footer-contact-link {
      color: var(--gray-light);
      transition: var(--transition, color 0.2s);
      text-decoration: none;
    }

    .footer-contact-link:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 2rem;
      margin-top: 2rem;
    }

    .footer-bottom-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
    }

    @media (min-width: 700px) {
      .footer-bottom-content {
      flex-direction: row;
      align-items: center;
      }
    }

    .footer-copyright {
      color: var(--gray-light);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .footer-legal {
      display: flex;
      gap: 1.5rem;
    }

    .footer-legal-link {
      color: var(--gray-light);
      font-size: 0.875rem;
      transition: var(--transition, color 0.2s);
      text-decoration: none;
    }

    .footer-legal-link:hover {
      color: var(--white);
      text-decoration: underline;
    }