/* ============ TOKENS (Violet / Indigo / White theme) ============ */
:root {
  --bg: rgb(248, 247, 252);
  /* page background - cool off-white */
  --dark-purple: rgb(23, 19, 36);
  /* headings - near-black with violet tint */
  --purple: rgb(101, 60, 214);
  /* category label / icon accent - vivid violet */
  --purple-light: rgb(236, 231, 251);
  /* Why Us box bg - light lavender */
  --purple-primary: rgb(87, 48, 201);
  /* primary buttons / selected state / accent - deep violet */
  --purple-light2: rgb(221, 209, 247);
  /* icon badge bg - light violet */
  --dark-purple2: rgb(31, 26, 48);
  /* section subheadings - near black */
  --orange: rgb(255, 111, 80);
  /* Save button / accent coral */
  --dark-gray: rgb(45, 45, 45);
  --near-black: rgb(10, 10, 10);
  --card-border: rgb(225, 218, 245);
  /* light violet border */
  --whyus-border: rgb(196, 176, 235);
  /* violet border */
  --white: #ffffff;
  --text-secondary: #6b6478;
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-lg: 20px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 3px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-purple);
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============ SCREENS ============ */
.screen {
  position: relative;
  padding-top: 0px;
}

.screen.active {
  display: flex;
}

.scroll-area {
  overflow-y: auto;
  padding: 0px 24px 24px;
}

.bottom-spacer {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 1px solid var(--purple);
  margin-top: 20px;
  padding: 12px 10px;
  border-radius: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  background: var(--purple-light2);
  color: var(--text-secondary);
  gap: 8px;
}

.bottom-spacer-1 a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--purple);
  border-radius: 12px;
  margin-top: 20px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  background: var(--purple-light2);
  color: var(--text-secondary);
}

/* ============ HOME / HERO ============ */
.home-scroll {
  padding: 0 !important;
}

.hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(10, 10, 10, 0.15) 40%,
      rgba(10, 10, 10, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 20px 20px;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.city-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.city-pill svg {
  transition: transform 0.2s;
}

.city-pill.open svg {
  transform: rotate(180deg);
}

.primary-tag {
  margin-left: auto;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}

.city-dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  width: 180px;
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  display: none;
  z-index: 10;
}

.city-dropdown.open {
  display: block;
}

.city-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark-purple);
}

.city-dropdown button:hover,
.city-dropdown button.selected {
  background: var(--purple-light);
  color: var(--purple-primary);
}

.search-pill {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 80px;
  padding: 6px 8px;
}

.search-input-row {
  background: #fff;
  border-radius: 80px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.search-text {
  font-size: 13.5px;
  color: var(--dark-purple);
  font-weight: 600;
}

.search-text strong {
  color: var(--purple-primary);
  font-weight: 700;
}

.search-input-row svg {
  color: var(--purple-primary);
  flex-shrink: 0;
}

/* ============ HOME BODY ============ */
.home-body {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  margin-top: -16px;
  position: relative;
  padding: 22px 24px 24px;
}

/* ============ AUTH SCREENS ============ */
.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: flex;
  gap: 12px;
}

.field-row .field {
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-purple2);
  font-family: var(--font-body);
}

.field input {
  height: 52px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 14.5px;
  background: var(--white);
  color: var(--dark-purple);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.field input:focus {
  border-color: var(--purple-primary);
}

.field input::placeholder {
  color: var(--text-secondary);
}

/* Wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
}

/* Dropdown */
.field select {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14.5px;
  color: var(--text-secondary);
  background: var(--white);
  outline: none;
}

.field select::placeholder {
  color: var(--text-secondary);
  ;
}

.field select:focus {
  border-color: var(--purple-primary);
}


.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: var(--white);
}

.phone-input input {
  border: none;
  height: auto;
  padding: 0;
  flex: 1;
}

.flag {
  font-size: 18px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-line input {
  margin-top: 3px;
  accent-color: var(--purple-primary);
  width: 16px;
  height: 16px;
}

.checkbox-line a {
  color: var(--purple-primary);
  font-weight: 600;
}

.btn-continue {
  height: 52px;
  width: 100%;
  border-radius: var(--radius-sm);
  background: var(--purple-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

/* ============ CATEGORY DETAIL ============ */
.choose-category-heading {
  text-align: center;
  padding: 8px 0 20px;
}

.choose-category-heading h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 6px;
}

.choose-category-heading p {
  font-size: 14px;
  color: var(--dark-purple);
  font-family: var(--font-display);
}

.step-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-purple2);
  margin-bottom: 15px;
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.chip-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chip-grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chip-btn {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 80px;
  text-align: center;
}

.chip-btn-2 {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 40px 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 80px;
  text-align: center;
}

.chip-emoji {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.chip-btn.selected,
.chip-btn-2.selected {
  background: var(--purple-primary);
  color: #fff;
  border-color: var(--purple-primary);
}

.chip-btn.selected .chip-emoji,
.chip-btn-2.selected .chip-emoji {
  background: rgba(255, 255, 255, 0.22);
}

.checkbox-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-chip {
  width: 100%;
  height: 64px;
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.checkbox-chip .box {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1.5px solid var(--card-border);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
}

.checkbox-chip.selected .box {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
}

.checkbox-chip.selected .box::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-btn {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  font-family: var(--font-body);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-btn.inline {
  margin: 0;
}

/* ============ REGISTER ============ */
.purple-header {
  background: var(--purple-primary);
  margin: 0px -24px 24px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.purple-header h2 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
}

.purple-header-1 {
  background: var(--purple-primary);
  margin: 0px -0px 24px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.purple-header-1 h2 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
}

.back-btn.on-purple {
  color: #fff;
  box-shadow: none;
}

.register-form {
  padding-top: 4px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 360px) {
  .scroll-area {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .scroll-area {
    padding-left: 32px;
    padding-right: 32px;
  }
}

#desktop-message {
  display: none;
}

#mobile-content {
  display: block;
}

@media screen and (min-width: 768px) {
  #desktop-message {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 999999;
  }

  .message-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 420px;
  }

  .message-box h2 {
    color: var(--purple-primary);
    margin-bottom: 15px;
  }

  .message-box p {
    color: #555;
    font-size: 18px;
  }

  #mobile-content {
    display: none;
  }
}




/* ===== HERO SLIDER: search pill + dot indicators ===== */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-bottom .search-pill {
  width: 100%;
}

.hero-bottom .search-input-row {
  width: 100%;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 18px;
  border-radius: 4px;
  background: #fff;
}

/* ===== CATEGORY / "Search for teachers" SECTION (home page) ===== */
.category-section {
  width: 100%;
  margin-top: 15px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: rgb(32, 32, 32);
  text-align: center;
  margin-bottom: 16px;
}

.explore-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.explore-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 190px;
  border-radius: 20px;
  padding: 20px 14px 20px 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.explore-card:active {
  transform: scale(0.98);
}

.explore-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -35px;
  width: 170px;
  height: 170px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
}

.explore-content {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.explore-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: rgb(30, 26, 20);
  margin-bottom: 8px;
}

.explore-content p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgb(70, 63, 58);
  line-height: 1.6;
  margin-bottom: 16px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 9px 16px;
  border-radius: 30px;
}

.explore-btn i {
  font-size: 10px;
}

.explore-img {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 155px;
  height: 190px;
  margin-right: -14px;
  margin-bottom: -20px;
  align-self: flex-end;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* explore card colour variants */
.explore-purple {
  background: rgb(236, 231, 251);
}

.explore-purple .explore-btn {
  background: rgb(124, 79, 224);
}

.explore-coral {
  background: rgb(252, 227, 220);
}

.explore-coral .explore-btn {
  background: rgb(255, 107, 74);
}

.explore-green {
  background: rgb(225, 246, 230);
}

.explore-green .explore-btn {
  background: rgb(63, 174, 85);
}

.explore-teal {
  background: rgb(223, 246, 241);
}

.explore-teal .explore-btn {
  background: rgb(31, 174, 147);
}

.explore-pink {
  background: rgb(251, 228, 241);
}

.explore-pink .explore-btn {
  background: rgb(224, 85, 158);
}

.explore-blue {
  background: rgb(222, 239, 252);
}

.explore-blue .explore-btn {
  background: rgb(46, 143, 224);
}

/* ===== MOBILE SIDE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
  transition: left 0.35s ease;
  z-index: 1003;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.close-btn {
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid #eee;
}

.mobile-menu ul li a {
  display: block;
  width: 100%;
  padding: 18px 20px;
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  box-sizing: border-box;
  transition: 0.3s;
}

.mobile-menu ul li a:hover {
  background: var(--purple-primary);
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 1001;
}

.overlay.active {
  display: block;
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 60%;
    left: -60%;
  }
}

.icons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
}

.about-purple-header h2 {
  font-size: 19px;
}

.about-body {
  padding: 0 24px 30px;
}

.about-intro {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-block {
  margin-bottom: 24px;
}

.about-block-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--purple-primary);
  margin-bottom: 10px;
}

.about-block p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--dark-purple);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-purple);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.about-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  background: var(--purple-primary);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-mission-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vm-card {
  background: var(--purple-light);
  border: 1px solid var(--whyus-border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}

.vm-card h4 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--purple-primary);
  margin-bottom: 6px;
}

.vm-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dark-purple);
}

.faq-purple-header h2 {
  font-size: 19px;
}

.faq-body {
  padding: 20px 24px 30px;
}

.faq-intro {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-purple);
}

.faq-q-num {
  color: var(--purple-primary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 8px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  background: var(--purple-light2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 16px 16px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.pp-purple-header h2 {
  font-size: 19px;
}

.pp-body {
  padding: 20px 24px 30px;
}

.pp-effective-date {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-primary);
  background: var(--purple-light);
  border: 1px solid var(--whyus-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.pp-intro {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.pp-section {
  margin-bottom: 22px;
}

.pp-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-section-num {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 7px;
  background: var(--purple-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-section p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dark-purple);
  margin-bottom: 8px;
}

.pp-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.pp-section ul li {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-purple);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow-card);
}

.pp-section ul li::before {
  content: "•";
  color: var(--purple-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pp-contact-card {
  background: var(--purple-light);
  border: 1px solid var(--whyus-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 6px;
}

.pp-contact-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-purple);
  margin-bottom: 0;
}

.pp-contact-card a {
  color: var(--purple-primary);
  font-weight: 600;
}

.tc-purple-header h2 {
  font-size: 19px;
}

.tc-body {
  padding: 20px 24px 30px;
}

.tc-effective-date {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-primary);
  background: var(--purple-light);
  border: 1px solid var(--whyus-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.tc-intro {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.tc-section {
  margin-bottom: 22px;
}

.tc-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-section-num {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 7px;
  background: var(--purple-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-section p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dark-purple);
  margin-bottom: 8px;
}

.tc-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.tc-section ul li {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-purple);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow-card);
}

.tc-section ul li::before {
  content: "•";
  color: var(--purple-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.tc-contact-card {
  background: var(--purple-light);
  border: 1px solid var(--whyus-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 6px;
}

.tc-contact-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-purple);
  margin-bottom: 0;
}

.tc-contact-card a {
  color: var(--purple-primary);
  font-weight: 600;
}