.lsp-mini-section {
  width: 100%;
  max-width: 100%;
  margin: 15px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  box-sizing: border-box;
  color: #111;
}

.lsp-mini-section * {
  box-sizing: border-box;
}

.lsp-mini-issue {
  border: 3px double #c9d0df;
  background: #fff;
  padding: 12px 8px;
  text-align: center;
}

.lsp-mini-issue img {
  width: 105px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.lsp-mini-issue h3 {
  margin: 0 0 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.lsp-mini-issue p {
  margin: 3px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.25;
}

.lsp-mini-info {
  background: #eef0f5;
  padding: 14px 16px;
}

.lsp-mini-info h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
}

.lsp-mini-info p {
  margin: 0 0 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.lsp-mini-info a {
  color: #0071bc;
  text-decoration: underline;
}

.lsp-mini-meta {
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.35;
  color: #333;
}

@media (max-width: 520px) {
  .lsp-mini-section {
    grid-template-columns: 1fr;
  }

  .lsp-mini-issue img {
    width: 95px;
  }

  .lsp-mini-info h2 {
    font-size: 19px;
  }

  .lsp-mini-info p {
    font-size: 12px;
  }
}
2nd indexing section
.lsp-index-panel {
  width: 100%;
  max-width: 230px;
  margin: 18px auto;
  padding: 14px 12px;
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 8px 25px rgba(20, 40, 70, 0.07);
}

.lsp-index-panel,
.lsp-index-panel * {
  box-sizing: border-box;
}

.lsp-index-title {
  position: relative;
  margin-bottom: 15px;
  text-align: left;
}

.lsp-index-title span {
  display: inline-block;
  padding: 7px 13px;
  background: #f3f7fb;
  border-left: 4px solid #2f80ed;
  border-radius: 8px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.lsp-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lsp-index-list li {
  position: relative;
  margin-bottom: 10px;
  padding: 12px 9px 10px;
  background: linear-gradient(135deg, #ffffff, #fafcff);
  border: 1px solid #edf1f6;
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
  transition: all 0.28s ease;
}

.lsp-index-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  width: 3px;
  height: 64%;
  background: #2f80ed;
  border-radius: 0 8px 8px 0;
  opacity: 0.35;
  transition: all 0.28s ease;
}

.lsp-index-list li:hover {
  transform: translateY(-3px);
  border-color: #cfe0f5;
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.12);
}

.lsp-index-list li:hover::before {
  opacity: 1;
  height: 78%;
  top: 11%;
}

.lsp-index-list a {
  display: block;
  text-decoration: none;
}

.lsp-index-list img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 58px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(8%);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.lsp-index-list li:hover img {
  transform: scale(1.035);
  filter: grayscale(0%);
}

.lsp-index-list p {
  margin: 8px 0 0;
  color: #344054;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
}

/* Special adjustment for square logos */
.lsp-index-list li:nth-child(3) img {
  max-height: 62px;
}

.lsp-index-list li:nth-child(6) img,
.lsp-index-list li:nth-child(10) img,
.lsp-index-list li:nth-child(11) img {
  max-width: 160px;
  max-height: 50px;
}

/* Mobile */
@media (max-width: 600px) {
  .lsp-index-panel {
    max-width: 100%;
  }

  .lsp-index-list img {
    max-width: 145px;
  }
}
3rd footer
.lsp-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

/* Black top strip */
.lsp-footer-top {
  background: #000;
  color: #fff;
  padding: 26px 20px;
}

.lsp-footer-top-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 600;
}

/* Main footer */
.lsp-footer-main {
  background: #f8f8f8;
  padding: 55px 38px 28px;
  border-top: 1px solid #e1e1e1;
}

.lsp-footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1.1fr 1fr 1.55fr;
  gap: 42px;
  align-items: start;
}

.lsp-footer-col h4 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.lsp-footer-col a {
  display: block;
  margin: 0 0 15px;
  color: #111;
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.lsp-footer-col a:hover {
  color: #0b5cad;
  padding-left: 5px;
}

/* Brand section */
.lsp-footer-brand {
  text-align: right;
}

.lsp-footer-brand p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
  color: #111;
}

.lsp-footer-brand img {
  width: 245px;
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 6px 0 14px;
  border-radius: 4px;
}

.lsp-footer-address {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  color: #444 !important;
}

/* Bottom row */
.lsp-footer-bottom {
  max-width: 1240px;
  margin: 45px auto 0;
  padding-top: 24px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #111;
}

.lsp-footer-bottom a {
  margin-left: 24px;
  color: #111;
  text-decoration: none;
  transition: color 0.25s ease;
}

.lsp-footer-bottom a:hover {
  color: #0b5cad;
}

/* Responsive */
@media (max-width: 1050px) {
  .lsp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lsp-footer-brand {
    text-align: left;
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .lsp-footer-top {
    padding: 22px 15px;
  }

  .lsp-footer-top-inner {
    gap: 14px;
    font-size: 15px;
    text-align: center;
  }

  .lsp-footer-main {
    padding: 38px 22px 24px;
  }

  .lsp-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lsp-footer-brand {
    grid-column: auto;
    text-align: left;
  }

  .lsp-footer-brand img {
    width: 210px;
  }

  .lsp-footer-bottom {
    margin-top: 30px;
    flex-direction: column;
  }

  .lsp-footer-bottom a {
    display: block;
    margin: 10px 0 0;
  }
}
.lsp-footer-legal-note {
  max-width: 1240px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid #d9d9d9;
  text-align: center;
}

.lsp-footer-legal-note p {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #222;
}

.lsp-footer-legal-note p:first-child {
  font-weight: 700;
}
/* Compact Footer Override */

.lsp-footer {
  max-width: 1000px;
  margin: 0 auto;
}

/* Top black strip smaller */
.lsp-footer-top {
  padding: 16px 12px !important;
}

.lsp-footer-top-inner {
  max-width: 1000px !important;
  gap: 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-align: center;
}

/* Main footer compact */
.lsp-footer-main {
  padding: 32px 28px 18px !important;
}

.lsp-footer-grid {
  max-width: 1000px !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr !important;
  gap: 26px !important;
}

/* Column headings smaller */
.lsp-footer-col h4 {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Footer links smaller */
.lsp-footer-col a {
  margin: 0 0 10px !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

/* Right side brand text smaller */
.lsp-footer-brand p {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

/* Logo smaller */
.lsp-footer-brand img {
  width: 180px !important;
  margin: 4px 0 10px !important;
}

/* Address smaller */
.lsp-footer-address {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

/* Bottom row smaller */
.lsp-footer-bottom {
  max-width: 1000px !important;
  margin: 25px auto 0 !important;
  padding-top: 16px !important;
  font-size: 12px !important;
  gap: 12px !important;
}

.lsp-footer-bottom a {
  margin-left: 16px !important;
  font-size: 12px !important;
}

/* Legal note smaller */
.lsp-footer-legal-note {
  max-width: 1000px !important;
  margin: 18px auto 0 !important;
  padding-top: 14px !important;
}

.lsp-footer-legal-note p {
  margin: 0 0 6px !important;
  font-size: 11.5px !important;
  line-height: 1.45 !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .lsp-footer {
    max-width: 100%;
  }

  .lsp-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
  }

  .lsp-footer-brand {
    grid-column: span 2;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .lsp-footer-top {
    padding: 14px 10px !important;
  }

  .lsp-footer-top-inner {
    font-size: 12px !important;
    gap: 8px !important;
  }

  .lsp-footer-main {
    padding: 26px 18px 16px !important;
  }

  .lsp-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .lsp-footer-brand {
    grid-column: auto;
    text-align: left;
  }

  .lsp-footer-brand img {
    width: 155px !important;
  }

  .lsp-footer-bottom a {
    display: block;
    margin: 8px 0 0 !important;
  }
}
/* Remove footer logo completely */
.lsp-footer-brand img {
  display: none !important;
}

/* Text-only brand box */
.lsp-footer-brand {
  text-align: right;
  padding: 12px 14px;
  background: #ffffff;
  border-left: 3px solid #000;
  border-radius: 6px;
}

.lsp-footer-brand p {
  margin: 0 0 8px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.lsp-footer-address {
  margin-top: 8px !important;
  font-size: 11.5px !important;
  color: #444 !important;
}

@media (max-width: 700px) {
  .lsp-footer-brand {
    text-align: left;
  }
}