.elementor-5204 .elementor-element.elementor-element-cea8a27{--display:flex;}/* Start custom CSS for container, class: .elementor-element-cea8a27 *//* ============================================================
   privacy.css — Privacy Policy Page
   Design system matches Terms & Conditions
   Brand: Advanced Learning Programs (ALPs)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --blue:       #0c1b34;
  --red:        #7a0202;
  --yellow:     #f19325;
  --gray:       #534d4f;
  --light-gray: #ebeced;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(12,27,52,.10);
  --transition: .25s ease;
  --navbar-h:   68px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--blue);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--red); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; text-decoration: underline; }

/* ── FONT FORCE ─────────────────────────────────────────── */
.pp-hero,
.pp-wrap,
.pp-section__body,
.pp-section__body p,
.pp-section__body li,
.pp-highlight,
.pp-hero__sub,
.pp-contact__text p,
.pp-intro__text {
  font-family: 'Source Sans 3', sans-serif;
}

.pp-hero__brand,
.pp-hero__title,
.pp-section__title,
.pp-section__num,
.pp-divider__label,
.pp-contact__text h3,
.pp-contact__btn,
.pp-intro__title,
.pp-action-card h4 {
  font-family: 'Poppins', sans-serif;
}


/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}
.navbar__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  text-decoration: none;
}
.navbar__logo span { color: var(--yellow); }
.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar__nav a {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  text-decoration: none;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--yellow); opacity: 1; text-decoration: none; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════
   HERO BANNER
══════════════════════════════════════════════════════════ */
.pp-hero {
  background-color: var(--blue);
  background-image:
    radial-gradient(circle at 10% 50%, rgba(122,2,2,.28) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(241,147,37,.15) 0%, transparent 50%);
  padding: 52px 24px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-hero__brand {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.pp-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 16px;
}
.pp-hero__divider {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  margin: 0 auto 18px;
}
.pp-hero__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.58);
  margin: 0;
}
.pp-hero__sub strong { color: rgba(255,255,255,.85); font-weight: 600; }


/* ══════════════════════════════════════════════════════════
   LAYOUT WRAPPER
══════════════════════════════════════════════════════════ */
.pp-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  flex: 1;
}


/* ══════════════════════════════════════════════════════════
   INTRO CARD
══════════════════════════════════════════════════════════ */
.pp-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-bottom: 32px;
}
.pp-intro__icon {
  width: 48px;
  height: 48px;
  background: rgba(241,147,37,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-intro__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-intro__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pp-intro__text {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.7;
}
.pp-intro__text strong { color: rgba(255,255,255,.9); font-weight: 600; }


/* ══════════════════════════════════════════════════════════
   SECTION CARDS (Accordion)
══════════════════════════════════════════════════════════ */
.pp-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
  border-top: 4px solid var(--red);
  opacity: 0;
  transform: translateY(16px);
  animation: ppFadeUp .45s ease forwards;
}
.pp-section:nth-child(1) { animation-delay: .04s; }
.pp-section:nth-child(2) { animation-delay: .10s; }
.pp-section:nth-child(3) { animation-delay: .16s; }
.pp-section:nth-child(4) { animation-delay: .22s; }
.pp-section:nth-child(5) { animation-delay: .28s; }
.pp-section:nth-child(6) { animation-delay: .34s; }

@keyframes ppFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.pp-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}
.pp-section.open .pp-section__header {
  border-bottom: 1px solid var(--light-gray);
}

/* Icon box */
.pp-section__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-section__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  flex: 1;
}

.pp-section__num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(241,147,37,.12);
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

.pp-section__chevron {
  width: 18px;
  height: 18px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.pp-section.open .pp-section__chevron { transform: rotate(180deg); }

/* Body — hidden by default, shown when .open */
.pp-section__body {
  display: none;
  padding: 24px 28px 28px;
}
.pp-section.open .pp-section__body { display: block; }

.pp-section__body p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.75;
}
.pp-section__body p:last-child { margin-bottom: 0; }
.pp-section__body strong { color: var(--blue); font-weight: 600; }


/* ══════════════════════════════════════════════════════════
   HIGHLIGHT BOX
══════════════════════════════════════════════════════════ */
.pp-highlight {
  background: rgba(12,27,52,.04);
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 14px 0 0;
  font-size: .95rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
}
.pp-highlight strong { color: var(--blue); font-weight: 600; font-style: normal; }


/* ══════════════════════════════════════════════════════════
   ACTION CARDS (Disposal section)
══════════════════════════════════════════════════════════ */
.pp-action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.pp-action-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px 18px;
  border-top: 3px solid var(--yellow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pp-action-card:hover {
  box-shadow: 0 6px 20px rgba(12,27,52,.1);
  transform: translateY(-2px);
}
.pp-action-card__icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pp-action-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-action-card h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 5px;
}
.pp-action-card p {
  font-size: .87rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}


/* ══════════════════════════════════════════════════════════
   LIST
══════════════════════════════════════════════════════════ */
.pp-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.pp-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: .97rem;
  color: var(--gray);
  line-height: 1.7;
}
.pp-list li:last-child { border-bottom: none; }
.pp-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 9px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   DIVIDER LABEL
══════════════════════════════════════════════════════════ */
.pp-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 24px;
}
.pp-divider__line { flex: 1; height: 2px; background: var(--light-gray); }
.pp-divider__label {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  padding: 5px 16px;
  border: 2px solid var(--blue);
  border-radius: 50px;
}


/* ══════════════════════════════════════════════════════════
   DATA TAGS (Website section)
══════════════════════════════════════════════════════════ */
.pp-data-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.pp-data-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--light-gray);
  border: 1.5px solid rgba(12,27,52,.12);
  padding: .38rem 1rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}
.pp-data-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.pp-data-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}


/* ══════════════════════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════════════════════ */
.pp-contact {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.pp-contact__text { flex: 1; min-width: 200px; }
.pp-contact__text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pp-contact__text p {
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  margin: 0;
}
.pp-contact__btn {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  padding: 12px 26px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .03em;
}
.pp-contact__btn:hover { background: #ffaa3d; opacity: 1; text-decoration: none; }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .pp-action-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --navbar-h: 60px; }
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .pp-hero { padding: 36px 20px 30px; }
  .pp-hero__title { font-size: 1.8rem; }

  .pp-intro { flex-direction: column; gap: 14px; }

  .pp-section__header { padding: 16px 18px; gap: 12px; }
  .pp-section__body   { padding: 18px; }
  .pp-section__num    { display: none; }

  .pp-contact { padding: 22px 18px; }

  .pp-divider__label { font-size: .62rem; padding: 4px 12px; }
}/* End custom CSS */