    body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Plus Jakarta Sans", sans-serif;
      background-color: #fff;
    }

    .footer {
      background-color: #011932;
      background-image: url('../images/Background.png');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      color: #ffffff;
      width: 100%;
      height: 373px;
      position: relative;
      overflow: hidden;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 1190px;
      max-width: 90%;
      margin: 0 auto;
      padding-top: 68px;
      gap: 26px;
    }

    .about-website {
      width: 377px;
    }

    .about-website h1 {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #38A9FF;
      margin-bottom: 15px;
    }

    .about-website p {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      line-height: 1.4;
      height: 100px;
      margin-bottom: 10px;
    }

    .about-website a {
      color: #fff;
      font-size: 15px;
      text-decoration: underline;
      transition: 0.3s;
    }

    .about-website a:hover {
      color: #38A9FF;
    }

    .footer-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 85px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom span {
      font-size: 14px;
      color: #ccc;
    }

    .footer-bottom img {
      height: 28px;
    }

    .footer-bottom .social-icons i {
      font-size: 16px;
      color: #fff;
      margin: 0 10px;
      cursor: pointer;
      transition: 0.3s;
    }

    .footer-bottom .social-icons i:hover {
      color: #38A9FF;
    }

    @media (max-width: 991px) {
      .footer {
        height: auto;
        padding-bottom: 130px;
      }

      .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .about-website {
        width: 100%;
        max-width: 500px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 20px 0;
        text-align: center;
      }
    }