body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
    }

    .footer {
      text-align: center;
      padding: 40px 20px;
    }

    .footer h2 {
      font-size: 32px;
      font-weight: bold;
      color: #111;
      margin-bottom: 20px;
    }

    .social-icons {
      margin-bottom: 20px;
    }

    .social-icons a {
      color: black;
      font-size: 24px;
      margin: 0 10px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #8e44ad;
    }

    .footer p {
      color: #555;
      font-size: 14px;
    }