/* Social Icons Wrapper */
.location-social-icons {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: left;
}

/* Link Style */
.location-social-icons a {
  font-size: 20px;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Optional: Icon Spacing */
.location-social-icons i {
  display: inline-block;
  vertical-align: middle;
}

/* =========================
   DLI FAQ Accordion Styles
   ========================= */

/* Wrapper */
.dli-faq {
  font-family: "Red Hat Display", "Red Hat Text", "Poppins", sans-serif;
}

/* Item */
.dli-faq-item {
  margin: 0 0 12px 0;
}

/* Question button */
.dli-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #F0F0F0 !important;
  color: #000000B3 !important;

  padding: 12px 24px;
  border: 0;
  border-radius: 0;

  font-family: "Red Hat Display", "Red Hat Text", "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;

  cursor: pointer;
  text-align: left;
}

.dli-faq-q:focus {
  outline: none;
}

/* Active / expanded question */
.dli-faq-item.is-active .dli-faq-q,
.dli-faq-q[aria-expanded="true"] {
  color: #161313 !important;
}

/* Optional icon (if your markup includes an icon span) */
.dli-faq-icon {
  margin-left: 16px;
  flex: 0 0 auto;
  color: inherit;
}

/* Answer container */
.dli-faq-a {
  display: none;
  padding: 12px 24px;
  background: #ffffff !important;

  font-family: "Red Hat Display", "Red Hat Text", "Poppins", sans-serif;
  color: #2A2A2A !important;
  font-size: 16px;
  line-height: 1.65;
}

/* Show answer when active */
.dli-faq-item.is-active .dli-faq-a {
  display: block;
}

/* Answer content spacing */
.dli-faq-a p {
  margin: 0 0 12px 0;
}

.dli-faq-a p:last-child {
  margin-bottom: 0;
}