
footer {
    background: url('/Media/Footer.jpg') no-repeat center center/cover;
    color: white;
    padding: 4rem 1.5rem;
    margin-top: 4rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-left,
  .footer-right {
    flex: 1;
  }
  .footer-right{
    padding-top: 4.2rem;
  }
  .footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 0.25rem 0;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    font-size: 0.875rem;
    color: #ccc;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s;
  }

  .social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .glass-box {
    flex: 1 1 45%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }

  iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
  }