@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

:root {
  --dark: #1a0533;
  --mid-dark: #2d0f4e;
  --light-dark: #3d1a63;
  --pink: #e91e8c;
  --pink-dark: #c2185b;
  --gold: #f9a825;
  --purple: #9c27b0;
  --text: #1f1f1f;
  --text-light: #4a4a6a;
  --bg: #faf8ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* ─── Section Wrapper ─────────────────────────────────────────────────────── */
.section_wrapper {
  padding: 30px 0;
  color: var(--text);
}

/* ─── Headings ───────────────────────────────────────────────────────────── */
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
}

h1 .highlight {
  color: var(--pink);
}

.section_wrapper h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  border-left: 4px solid var(--pink);
  padding-left: 10px;
}

.section_wrapper h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq_item h3 {
  margin-bottom: 0px !important;
}

/* ─── Paragraphs ─────────────────────────────────────────────────────────── */
.section_wrapper p {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Lists ──────────────────────────────────────────────────────────────── */
.section_wrapper ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
}

.section_wrapper li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── Links ──────────────────────────────────────────────────────────────── */
.section_wrapper a {
  color: var(--pink);
  text-decoration: underline;
  transition: color 0.2s;
}

.section_wrapper a:hover {
  color: var(--pink-dark);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn_primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: white;
}

.btn_gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f57f17 100%);
  color: #1a0533;
}

/* ─── Table of Contents ──────────────────────────────────────────────────── */
.toc_wrapper {
  background: #ffffff;
  border: 1px solid #ede8f7;
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(233, 30, 140, 0.06);
}

.toc_toggle {
  color: var(--dark);
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.toc_arrow {
  font-size: 1.2rem;
  color: var(--pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.toc_toggle[aria-expanded="false"] .toc_arrow {
  transform: rotate(-90deg);
}

.toc_list {
  list-style: none;
  margin: 14px 0 0 0 !important;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none !important;
}

.toc_list.collapsed {
  display: none;
}

.toc_list li {
  background: var(--bg);
  border: 1px solid #ede8f7;
  border-radius: 8px;
  padding: 9px 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.toc_list li:hover {
  background: #fdf5ff;
  border-color: #e0c8f5;
}

.toc_list a {
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.toc_list a:hover,
.toc_list a.active {
  color: var(--pink);
}

.toc_list a.active {
  font-weight: 800;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media screen and (max-width: 1290px) {
  .container_mobile {
    padding: 0 15px;
  }
  .section_wrapper {
    padding: 35px 0;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
  .section_wrapper h2 {
    font-size: 1.4rem;
  }
  .section_wrapper {
    padding: 15px 0;
  }
}
