
    footer {
      /* background: #154D71; */
      background: #ece6e6;
      color: #154D71;
      padding: 40px 20px 20px;
      text-align: center;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: auto;
    }

    .footer-col h3 {
      margin-bottom: 15px;
      font-size: 18px;
      color: black;
    }

    .footer-col a {
      display: block;
      color: black;
      text-decoration: none;
      margin: 6px 0;
      font-size: 15px;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: #00ff99;
    }
    
    .footer-col p{
          text-align: left;
    }

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

    .social-icons a {
      font-size: 22px;
      color: black;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #00ff99;
    }

    .footer-bottom {
      margin-top: 25px;
      border-top: 1px solid #333;
      padding-top: 15px;
      font-size: 14px;
      color: black;
    }