

    footer {
      font-family: 'Segoe UI', sans-serif;
      color: #fff;
      background: black;
      padding: 40px 0;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 1.2s ease-in-out;
    }

    .footer-column p {
  margin-right: 20px;
  color: #ccc;
  font-size: 15px;
}


    .footer-container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
      margin: 20px 0;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 1.2em;
      color: #ffffff;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin: 8px 0;
      transition: transform 0.3s ease;
    }

    .footer-column ul li a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li:hover {
      transform: translateX(5px);
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background-color: #33354d;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #5757ff;
      transform: scale(1.1);
    }

    .footer-bottom {
      text-align: center;
      padding: 15px 0;
      border-top: 1px solid #33354d;
      margin-top: 20px;
      font-size: 0.9em;
      color: #888;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
     @media (max-width: 576px) {
    .footer-bottom {
      font-size: 0.1em;
      }
     }