.footer {
  background-color: #1a2a5e;
  color: #fff;
  padding: 40px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 30px;
  text-align: center;
}

.footer-logo h2 {
  font-size: 28px;
  margin: 0;
}

.footer-logo span {
  color: #4CAF50;
}

.footer-tagline {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: #ccc;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #4CAF50;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-links a {
  color: #ccc;
  margin: 0 15px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4CAF50;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    margin: 5px 0;
  }
} 