/* ========== Page Content ========== */
.page-section {
  padding: 80px 0 100px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 36px 0 12px;
  line-height: 1.4;
}

.page-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 28px 0 10px;
}

.page-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.page-content p.lead {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 32px;
}

.page-content a {
  color: var(--blue);
  font-weight: 500;
}

.page-content a:hover {
  color: var(--orange);
}

.page-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  margin: 36px 0;
  background: var(--gray-light);
  border-radius: 0 12px 12px 0;
}

.page-content blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-deep);
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
}

.page-content ul,
.page-content ol {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.page-content ul li,
.page-content ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.page-content ol {
  counter-reset: list-counter;
}

.page-content ol li {
  counter-increment: list-counter;
}

.page-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}

.page-content figure {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
}

.page-content figure img {
  width: 100%;
  height: auto;
}

.page-content figcaption {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}

.page-content hr {
  border: none;
  height: 1px;
  background: #eef1f7;
  margin: 48px 0;
}

.page-content strong {
  color: var(--navy-deep);
}

/* ========== Info Box ========== */
.info-box {
  background: linear-gradient(135deg, rgba(60,147,218,0.08), rgba(216,187,243,0.08));
  border: 1px solid rgba(60,147,218,0.2);
  border-radius: 16px;
  padding: 32px;
  margin: 36px 0;
}

.info-box h4 {
  color: var(--navy-deep);
  font-size: 1rem;
  margin: 0 0 12px;
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ========== Table of Contents ========== */
.toc {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.toc h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toc ul {
  margin: 0;
}

.toc ul li {
  padding-left: 0;
  margin-bottom: 6px;
}

.toc ul li::before {
  display: none;
}

.toc ul li a {
  color: var(--blue);
  font-size: 0.92rem;
}

.toc ul li a:hover {
  color: var(--orange);
}

/* ========== CTA Section ========== */
.cta-section {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-outline:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .page-content {
    padding: 0;
  }
}
