


  /* Unique class stplal with responsive margin */
  .stplal {
    margin: 20px 0;
    /* Default margin for desktop */
    width: 100%;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
    }

    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }

    .nav-toggle {
      display: flex;
    }

    .nav-links.active {
      display: flex;
    }

    .stplal {
      margin: 10px 0;
      /* Reduced margin for mobile */
    }
  }

/* outlets */
#our-outlets {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.outlets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.outlet {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 20%);
}

.outlet iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.details {
  padding: 15px;
}

.details h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.details p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.details .contact {
  font-weight: bold;
  margin-bottom: 10px;
}

.details a {
  color: #007bff;
  text-decoration: none;
}

.details a:hover {
  text-decoration: none;
}

/* Media Queries for Tablet View */
@media (max-width: 1024px) {
  .outlets {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Queries for Mobile View */
@media (max-width: 768px) {
  .outlets {
      grid-template-columns: 1fr;
  }
}