.footer {
      background-color: #1a1a1a;
      color: #999;
      padding: 50px 30px;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      text-align: left;
    }

    .footer-column {
      width: 20%;
      padding: 0 15px;
      min-width: 220px;
      margin-bottom: 20px;
    }

    .footer-text {
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 14px;
      color: #ccc;
    }

    .footer-heading {
      color: white;
      font-size: 16px;
      margin-bottom: 15px;
      font-weight: bold;
    }

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

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

    .footer-list a {
      color: #999;
      text-decoration: none;
      font-size: 14px;
    }

    .footer-contact {
      font-size: 14px;
    }

    .footer-hours {
      font-size: 12px;
      margin-top: 5px;
    }

    /* --- Responsive Styles --- */
    @media (max-width: 768px) {

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

      .footer-column {
        width: 100%;
        max-width: 350px;
        margin: 10px 0;
      }
    }

    @media (max-width: 480px) {

      .footer {
        padding: 35px 15px;
      }

      .footer-column {
        width: 100%;
        max-width: 320px;
      }
    }