 footer {
      background:rgb(53, 2, 53);
      color: #fff;
      padding: 40px 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-section {
      flex: 1 1 220px;
      min-width: 200px;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #ffcc00;
    }

    .footer-section p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin: 10px 0;
      font-size: 0.95rem;
    }

    .footer-section ul li i {
      margin-right: 10px;
      color: #ffcc00;
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-section a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .social-media {
      display: flex;
      gap: 15px;
    }

    .social-media a {
      color: #ccc;
      font-size: 1.4rem;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-media a:hover {
      color: #ffcc00;
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #444;
      margin-top: 30px;
      font-size: 0.85rem;
      color: #aaa;
    }