/* Footer Styles */
.footer {
    padding: 3rem 5%;
    background-color: var(--secondary);
    color: white;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-info {
    max-width: 400px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .footer-text {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
  }
  
  .footer-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
  }