 /* --- General Footer Styles --- */
  .footer {
    background-color: #01936d;
    color: #fff;
    font-size: 14px;
    padding: 50px 0 20px;
    /* Prevent horizontal scroll issues */
    overflow-x: hidden; 
  }

  /* Titles */
  .footer-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Lists */
  .footer ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }
  
  .footer ul li {
    margin-bottom: 8px; /* Space between different links */
    line-height: 1.3;   /* Tighter line height handles wrapping text gracefully */
  }

  .footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .footer a:hover {
    color: #fff;
    text-decoration: underline;
  }

  /* Divider Line */
  .footer hr {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 30px 0;
  }

  /* Newsletter Form */
  .newsletter .form-control {
    border-radius: 0;
    border: none;
    height: 45px;
  }
  .newsletter .btn {
    border-radius: 0;
    background-color: #00b894;
    color: #fff;
    border: none;
    height: 45px;
    padding: 0 20px;
    font-weight: 600;
  }
  .newsletter .btn:hover {
    background-color: #008f72;
  }

  /* Social Icons */
  .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    color: #fff;
    transition: background 0.3s;
  }
  .social-icons a:hover {
    background: #00b894;
    text-decoration: none;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }

  /* --- DESKTOP (Regular) Styles --- */
  @media (min-width: 768px) {
    .footer {
      text-align: left;
    }
  }

  /* --- MOBILE SPECIFIC Styles --- */
  @media (max-width: 767px) {
    .footer {
      text-align: center; /* Center everything */
    }
    
    .footer-title {
      text-decoration: underline;
      margin-top: 15px; /* Add spacing above titles */
    }

    /* Force 2 columns to sit nicely */
    .col-6 {
      padding-left: 5px;
      padding-right: 5px;
    }

    /* Center the newsletter input */
    .newsletter .input-group {
      justify-content: center;
    }
    
    .social-icons {
      margin-top: 15px;
      display: flex;
      justify-content: center;
    }
  }