.compliance-content-section {
    padding: 3rem 1.5rem;
    background: #fff;
}

.compliance-content-section.alt-section {
    background: #f9f9f9;
}

.compliance-content-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-section-heading {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
}

.compliance-section-heading {
    text-align: left;
}

.compliance-section-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #b22222;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.compliance-content-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.compliance-content-section ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
    list-style: none;
}

.compliance-content-section ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.compliance-content-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b22222;
    font-weight: bold;
    font-size: 1.2rem;
    top: 0;
}

.intro-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

/* -------------------------
   PDF Tabs (Compliance page)
-------------------------- */
.pdf-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 0;
    border-bottom: 2px solid #ddd;
    overflow-x: auto;
    scrollbar-width: thin;
    position: relative;
}

.pdf-tab {
  background: #003366;
  color: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 10px 20px;
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  flex: 1 1 auto;
  min-width: 80px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: -8px;
  z-index: 1;
}

.pdf-tab:hover {
  background: #fff;
  border-color: #003366;
  color: #003366;
}

.pdf-tab.active {
  background: #b22222;
  border-color: #b22222;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.pdf-container {
  position: relative;
  width: 100%;
  height: 90vh;
  border: 1px solid #ccc;
  border-top: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pdf-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Scroll indicator (gradient fade left + right) */
.pdf-tabs::before,
.pdf-tabs::after {
  content: "";
  position: absolute;
  top: 0;
  /* right: 0; */
  width: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.pdf-tabs::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-tabs::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0));
  opacity: 1;
  transition: opacity 0.3s ease;
}

.pdf-tabs.scroll-left::before {
  opacity: 1;
}

.pdf-tabs.scroll-right::after {
  opacity: 1;
}

.pdf-tabs:not(.scroll-right)::after {
  opacity: 0;
}
.pdf-tabs:not(.scroll-left)::before {
  opacity: 0;
}

.pdf-tabs.show-left-fade::before,
.pdf-tabs.show-right-fade::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.pdf-tabs.show-left-fade::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.15), transparent);
}

.pdf-tabs.show-right-fade::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.15), transparent);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    .compliance-content-section p,
    .compliance-content-section ul {
        font-size: 0.95rem;
    }
    .compliance-content-section ul li {
        padding-left: 1.2rem;
    }
}