
    footer {
      background-color: #030320;
      padding: 40px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-logo img {
      width: 60px;
    }

    .footer-section {
      flex: 1 1 200px;
    }

    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
      font-family: "Arial";
      color: #fff;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      color: rgba(243, 243, 243, 0.5);
      text-decoration: none;
    }

    .footer-section ul li a:hover {
      color: white;
    }

    .contact-info {
      font-size: 0.9rem;
      line-height: 1.6;
      color: rgba(243, 243, 243, 0.5);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid #333;
      padding-top: 20px;
      font-size: 0.85rem;
      color: rgba(243, 243, 243, 0.5);
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
    }

    .social-icons a {
      color: #ccc;
      font-size: 1.2rem;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: white;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .social-icons {
        justify-content: flex-start;
      }
    }