/* Existing styles remain unchanged */

/* Add these new styles at the end of the file */
footer {
    background-color: #1a1a1a;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    bottom: 0;
    left: 0;
  }
  
  .footer-left,
  .footer-right {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .social-links a {
    display: block;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #535bf2;
  }
  
  .contact-info {
    text-align: right;
  }
  
  .contact-info p {
    margin: 0.2rem 0;
    color: rgba(255, 255, 255, 0.87);
  }
  
  @media (prefers-color-scheme: light) {
    footer {
      background-color: #f9f9f9;
    }
    
    .contact-info p {
      color: #213547;
    }
  }