/* Footer.module.css */

/* 1. Footer container */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bipro-dark-blue);
    color: var(--color-white);
    padding: 1rem 2rem;
    flex-wrap: wrap;
  }
  
  /* 2. Links section */
  .links {
    display: flex;
    gap: 1rem;
  }
  .links a {
    color: var(--color-white);
    text-decoration: none;
    transition: text-decoration 0.3s;
  }
  .links a:hover {
    text-decoration: underline;
  }
  
  /* 3. Feedback section */
  .feedback {
    flex: 1;
    text-align: center;
    margin: 0.5rem 0;
  }
  .feedback a {
    color: var(--color-white);
    text-decoration: underline;
  }
  
  /* 4. Copyright section */
  .copyright {
    text-align: right;
    flex: 1;
  }
  
  /* 5. Responsive (mobile) */
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
      padding: 1rem;
    }
    .links, .feedback, .copyright {
      width: 100%;
    }
    .links {
      justify-content: center;
    }
    .copyright {
      text-align: center;
    }
  }  