/* ===== CHILD SECURITY PAGE ===== */

.cs-section {
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.cs-container {
  max-width: 720px;
  margin: 0 auto;
}

.cs-container .sp {
  margin-bottom: 40px;
}

/* Info banner */
.cs-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #eef6ff;
  border: 1px solid #93c5fd;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 48px;
}

.cs-banner-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.cs-banner-icon svg {
  width: 22px;
  height: 22px;
  color: #1d4ed8;
}

.cs-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: #1e3a6e;
  margin: 0;
}

/* Policy blocks */
.cs-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cs-block {
  border-left: 3px solid var(--primary, #2563eb);
  padding-left: 20px;
}

.cs-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cs-block-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary, #2563eb);
  flex-shrink: 0;
}

.cs-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text, #0f172a);
}

.cs-block p,
.cs-block ul {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.cs-block ul {
  padding-left: 18px;
  margin-top: 8px;
}

.cs-block ul li {
  margin-bottom: 6px;
}

/* Reporting box */
.cs-report-box {
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 48px;
}

.cs-report-box h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #7c2d12;
}

.cs-report-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #78350f;
  margin: 0 0 18px;
}

.cs-report-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Contact point */
.cs-contact-box {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 24px;
}

.cs-contact-box h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #14532d;
}

.cs-contact-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #166534;
  margin: 0;
}

.cs-contact-box a {
  color: #15803d;
  font-weight: 600;
  text-decoration: underline;
}

/* Last updated note */
.cs-updated {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .cs-section {
    padding: 100px 16px 60px;
  }

  .cs-report-btns {
    flex-direction: column;
  }

  .cs-report-btns a,
  .cs-report-btns button {
    width: 100%;
    justify-content: center;
  }
}
