.footer {
  background-color: #333;
  color: #fbfbfb;
  padding: 3rem 1rem;

  .footerContainer {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;

    .footerSection {
      .footerTitle {
        font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
        margin-bottom: 1rem;
      }

      .footerNav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;

        .footerLink {
          font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1rem);
          opacity: 0.8;
          transition: opacity 0.3s ease;

          &:hover {
            opacity: 1;
          }
        }
      }
    }
  }

  .copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(251, 251, 251, 0.1);
    font-size: clamp(0.8rem, 0.7rem + 0.5vw, 0.9rem);
    opacity: 0.8;
  }
}