/* footer.css */
.footer {
    background-color: var(--footer-bg);
    padding: 1rem;
    margin-top: auto;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-links a:not(:last-child):after {
    content: "•";
    position: absolute;
    right: -0.9rem;
    color: var(--text-color);
    opacity: 0.5;
  }
  
  .copyright {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    white-space: nowrap;
  }