.section-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  margin: -40px auto 32px auto;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.section-inner {
  background: var(--section-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 24px 16px 20px 16px;
  margin: 0;
}

.section-inner:last-child {
  margin-bottom: 0;
}

.section-divider {
  border: none;
  border-top: 1.5px solid var(--divider);
  width: 100%;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 16px 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(29,61,117,0.04);
  line-height: 1.3;
}

h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 12px 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin: 0 0 16px 0;
  line-height: 1.6;
}

ul, ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  line-height: 1.6;
}
ul {
  list-style: disc;
}
.section-inner ul, .section-inner ol {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Debt Types Grid as Cards */
.debt-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 12px 0;
}

.debt-grid-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 8px 12px 8px;
  text-align: center;
  width: calc(50% - 8px);
  min-width: 120px;
  max-width: 140px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.debt-grid-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.debt-grid-item img {
  max-width: 60px;
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f7f8fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.debt-grid-item div {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

/* Image and Caption */
.image-section {
  text-align: center;
  margin: 24px 0;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 12px 0;
  border: 4px solid #fff;
}

.image-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
  padding: 0 8px;
}

/* Compliance Notice and Disclaimer */
.compliance-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: #856404;
  line-height: 1.5;
}

.compliance-notice strong {
  color: #856404;
}

.disclaimer {
  max-width:900px;
  margin:32px auto 0 auto;
  padding:12px 18px 10px 18px;
  background:#f7f8fa;
  color:#6c7a89;
  font-size:13px;
  text-align:center;
  line-height:1.5;
}
