.stores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(270deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0);
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    border-radius: 5px;
    padding: 15px 0;
}
.faq-title[aria-expanded="true"] .icon-arrow.up {
    display: inline;
    transform: rotate(180deg);
}
.faq-title[aria-expanded="true"] .icon-arrow.down {
    display: none;
}
.faq-title .icon-arrow {
    transition: transform 0.3s ease;
}
.icon-arrow {
    border: solid;
    border-width: 0 2px 2px 0;
    display: inline-block;
    height: 13px;
    padding: 5px;
    width: 13px;
}

.separate-footer {
  background-color: #2c2c54;
  color: #fff;
  padding: 20px;
}

.footer-section {
 max-width:1200px;
 margin: 0 auto;
}

.newsletter h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #ff9000;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #d47800;
}
/* Align the container of the header and links in a single line */
.footer-links-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between "Site Links" and the links */
}

/* Styling the header */
.footer-links-header {
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    white-space: nowrap; /* Prevent the header from wrapping to a new line */
}

/* Styling the horizontal links */
.horizontal-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Space between individual links */
.horizontal-links .list-item {
    margin-right: 15px;
}

/* Links appearance */
.horizontal-links .list-item a {
    text-decoration: none;
    color: #fff; /* Default link color */
    font-size: 14px;
    font-weight: 400;
}

/* Hover effect for links */
.horizontal-links .list-item a:hover {
    color: #f39c12; /* Change color on hover */
    text-decoration: underline;
}
.copyright-text {
    text-align: right; /* Aligns text to the right */
    font-size: 16px; /* Increases font size */
  }
