 footer {
      background-color:black;
      color: #fff;
    }
.footer-links li {
      display: flex;
      align-items:baseline;
      margin-bottom: 8px;
      font-size: 18px;
      column-gap: 10px;
      color:white;
    }
 
.footer-links li a{
 color: rgb(62 238 209);
 text-decoration:none; 
 font-size: 18px;
}

   .social-icons {
      display: flex;
      justify-content: center;
      /* align to right; use center if needed */
      align-items: center;
      gap: 15px;
    }

    .social-icons a {
      background-color: #fff;
      color: #006d6f;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .social-icons a:hover {
      background-color: #006d6f;
      color: #fff;
      transform: scale(1.1);
    }

    .social-icons i {
      font-size: 20px;
      /* consistent icon size */
      line-height: 1;
    }
    

  /* =========================================
   MOBILE RESPONSIVE FOOTER
   (NO DESKTOP CHANGE)
========================================= */
@media (max-width: 768px) {

    footer {
        text-align: center;
        padding: 25px 15px;
    }

    /* Footer links */
    .footer-links {
        padding-left: 0;
    }

    .footer-links li {
        display: block;              /* Stack vertically */
        font-size: 16px;             /* Slightly smaller */
        margin-bottom: 10px;
        text-align:start;
    }

    .footer-links li a {
        font-size: 16px;
        word-break: break-word;      /* Prevent overflow */
    }

    /* Social icons center */
    .social-icons {
        justify-content: center;
        margin-top: 15px;
        gap: 12px;
    }

    .social-icons a {
        width: 38px;                 /* Slightly bigger for touch */
        height: 38px;
    }

    .social-icons i {
        font-size: 18px;
    }

}    

  