footer {
    background: linear-gradient(135deg, #ff9a8b, #ffb6b9, #a18cd1);
    background-size: 600% 600%;
    animation: gradientBG 10s ease infinite;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
  }

  @keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }

  .social-icons a {
    text-decoration: none;
    font-size: 32px;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.9;
  }

  .social-icons a:hover {
    transform: scale(1.2);
    opacity: 1;
  }

  .social-icons .facebook { color: #3b5998; }
  .social-icons .twitter { color: #1da1f2; }
  .social-icons .instagram { color: #e1306c; }
  .social-icons .linkedin { color: #0077b5; }
  .social-icons .youtube { color: #ff0000; }

  .subscribe-form {
    margin: 20px 0;
  }

  .subscribe-form input[type="email"] {
    padding: 10px;
    width: 250px;
    max-width: 80%;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
  }

  .subscribe-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #ff6b6b;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }

  .subscribe-form button:hover {
    background-color: #ff6b6b;
    color: #fff;
  }

  .confirmation-message {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    display: none;
    animation: fadeIn 1s forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .footer-links {
    margin: 20px 0 10px;
  }

  .footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #fff;
    text-decoration: underline;
  }

  footer p {
    font-size: 14px;
    color: #f0f0f0;
    margin-top: 10px;
  }

  @media (max-width: 600px) {
    .social-icons a {
      font-size: 28px;
    }
    .subscribe-form input[type="email"] {
      width: 70%;
      margin-bottom: 10px;
    }
    .subscribe-form button {
      width: 70%;
    }
  }