*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-bg: #e3e5f5;
  --nav-color: #15202c;
  --hero-title-color: #fafafa;
  --hero-title-stroke: #2f4052;
  --section-title-bg: #6f95bc;
  --section-title-color: #1d1711;
  --section-title-border: #2f4052;
  --text-color: #354661;
  --card-bg: #e3e5f5;
  --card-border: #6f95bc;
  --footer-bg: #6f95bc;
  --footer-color: #fafafa;
  --btn-bg: #0a3b67;
  --btn-border: #6f95bc;
  --btn-shadow: 2px 3px 3px 0px #28407080;
  --title-card: #2f4052;
  --violet: #597ee6;
  --title-border: #4f3365;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 12px 0;
}
.logo-wrap img {
  width: 32px;
  height: 32px;
  opacity: 1;
  border-radius: 8px;
  object-fit: contain;
}
.logo-placeholder {
  width: 32px;
  height: 32px;
  background: var(--section-title-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}
nav a {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(21, 32, 44, 0.65);
  text-decoration: none;
  transition: color 0.15s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: #182335;
}
nav a.active,
nav a:active {
  color: #15202c;
  border-bottom: 2px solid #5ca0e7;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-circle {
  width: 24px;
  height: 24px;
  background-color: #5ca0e7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background 0.3s;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #e3e5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  /* height: calc(100vh - 52px); */
  height: auto;
  max-height: calc(100vh - 56px);
  background: #e3e5f5;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  z-index: 999;
  align-items: stretch;

  padding-top: 40px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  color: #5d6a85;
  text-decoration: none;
  padding: 15px 0;
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 2px solid transparent;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.2s;
}

.mobile-menu a.active::after {
  background-color: #15202c;
}

.mobile-footer-links a::after {
  display: none;
}
.mobile-menu a:active,
.mobile-menu a.active {
  color: #182335;
  border-bottom: 2px solid #5ca0e7;
}

.mobile-footer-links {
  margin-top: auto;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}

.mobile-footer-links a {
  font-size: 16px;
  color: #182335;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  .hero-title {
    font-size: 32px;
    -webkit-text-stroke: 4px var(--hero-title-stroke);
  }
  .hero-sub {
    font-size: 18px;
    -webkit-text-stroke: 2px var(--hero-title-stroke);
  }
  .header-inner {
    padding: 0 10px;
    height: 56px;
    justify-content: space-between;
  }
}

/* ── GOOGLE PLAY BUTTON ── */
.gplay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  background: var(--header-bg);
  border: 1px solid var(#597ee6);
  box-shadow: var(#6324a74d);
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.gplay-btn:hover {
  background: linear-gradient(180deg, #f0e7e8 0%, #c2c5eb 100%);
  box-shadow: var(--btn-shadow);
}
.gplay-btn:active {
  background: linear-gradient(180deg, #f0e7e8 0%, #c2c5eb 100%);
  box-shadow: none;
}
.gplay-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gplay-btn-inner span.small {
  font-family: "Livvic", sans-serif;
  font-size: 20px;
  color: #182335;
  letter-spacing: 0.5px;
  line-height: 1;
}
.gplay-btn-inner span.big {
  font-family: "Livvic", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #182335;
  line-height: 1.2;
}
.gplay-icon {
  width: 24px;
  height: 24px;
}

/* ── SECTION TITLE ── */
.section-title-wrap {
  background: var(--violet);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 16px;
}
.section-title-wrap h2 {
  font-family: "Luckiest Guy", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--header-bg);
  -webkit-text-stroke: 1px var(--title-border);
}

/* ── GENERAL TEXT ── */
.general-text {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--text-color);
}
.subtitle {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--hero-title-color);
  -webkit-text-stroke: 4px var(--title-border);
  paint-order: stroke fill;
  margin-bottom: 27px;
  padding-top: 40px;
}

/* ── HERO ── */

.hero {
  position: relative;
  width: 100%;
  min-height: 800px; /* Краще min-height для гнучкості */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: var(--violet); /* Синій колір верху */
}

.hero-image-wrap {
  position: relative; /* Змінюємо з absolute на relative */
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Висота розмиття */
  background: linear-gradient(to bottom, var(--violet), transparent);
  z-index: 2;
}
.desktop-only {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-only {
  display: none;
}

.hero-text-block {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  /* Прибираємо фоновий колір, який був у вас */
  background-color: transparent;
}
.hero-btn-block {
  position: absolute;
  top: 23%; /* Регулюйте цей %, щоб кнопка стала точно над ігровим полем */
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.hero-bg {
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 48px;
  line-height: 160%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--hero-title-color);
  -webkit-text-stroke: 6px var(--title-border);
  paint-order: stroke fill;
  width: 100%;
  margin-bottom: 0;
}
.hero-sub {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--hero-title-color);
  -webkit-text-stroke: 4px var(--title-border);
  paint-order: stroke fill;
  margin-bottom: 17px;
  margin-top: 10px;
}

/* ── GAME OVERVIEW ── */
.overview {
  background-color: #e8ebf7;
}
.overview-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.overview-container {
  max-width: 1006px;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

.overview-img {
  max-width: 1200px;
  width: 90%;
  border-radius: 16px;
  padding-bottom: 40px;
}

/* ── GAMEPLAY MECHANICS ── */
.mechanics-section {
  padding: 0 0 48px;
  background: #e1e4f5;
}
.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
  align-items: stretch;
}
.mechanics-card {
  background: var(--card-bg);
  border: 4px solid var(--violet);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 20px;
}
.mechanics-card-img img {
  display: block;
  width: 100%;
  height: auto;
}

.mechanics-card p {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-color);
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* ── Functional Highlights ── */
.highlights-section {
  padding: 0 0 48px;
  background-color: var(--card-bg);
}
.highlights-inner {
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.highlights-center {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
}
.highlights-headline {
  font-family: "Luckiest Guy", cursive;
  font-size: 24px;
  line-height: 140%;
  font-weight: 400;
  color: var(--hero-title-color);
  text-align: center;
  -webkit-text-stroke: 3px var(--title-border);
  paint-order: stroke fill;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.highlights-sub {
  max-width: 1050px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.highlights-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.highlights-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.highlights-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.highlights-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── VISUAL GALLERY SLIDER ── */
.gallery-section {
  padding: 0 0 48px;
  background-color: #e1e4f5;
}

.slider-container {
  position: relative;
  max-width: 100%; /* Змінюємо з 1150px на 100% */
  margin: 32px auto 0;
  overflow: hidden; /* Обрізаємо тільки по краях екрана */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-wrap {
  position: relative;
  max-width: 1200px;
  overflow: visible;
  padding: 0;
}
.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: calc((100% - 1200px) / 2 + 20px); /* Розраховуємо ширину боковин */
  height: 100%;
  background: rgba(225, 228, 245, 0.7); /* Колір фону секції з прозорістю 0.7 */
  z-index: 5;
  pointer-events: none; /* Щоб можна було натискати крізь них */
}
.slider-container::before {
  left: 0;
}

.slider-container::after {
  right: 0;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.slide-item {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  background: #597ee6;
  border: 1px solid #597ee6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.15s;
}
.slider-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--card-bg);
  border-bottom: 2px solid var(--card-bg);
  display: block;
}

.slider-btn.prev::before {
  transform: rotate(45deg);
  margin-left: 6px;
}

.slider-btn.next::before {
  transform: rotate(-135deg);
  margin-right: 6px;
}
.slider-btn:hover {
  background: #5ca0e7;
}

.slider-btn.prev {
  left: calc((100% - 1200px) / 2 - 32px); /* Центруємо кнопку на шторці */
}

.slider-btn.next {
  right: calc((100% - 1200px) / 2 - 32px);
}

/* ── FAQ ── */
.faq-section {
  padding: 0 0 48px;
  background-color: var(--card-bg);
}
.faq-inner {
  max-width: 1062px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #597ee6;
  padding: 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  color: var(--text-color);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  background: transparent;
  color: #0f5ea5;
}
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #597ee6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px var(--card-bg),
    0 0 0 6px #597ee6;
  margin-right: 10px;
  transition:
    transform 0.3s ease,
    background 0.3s;
}
.faq-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-color);
  background: transparent;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 0 24px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* ── CONTACT ── */
.contact-section {
  padding: 0 0 60px;
  background-color: #e1e4f5;
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-content .hero-sub {
  font-size: 32px;
  line-height: 1.2;
  color: #5d54a4;
  -webkit-text-stroke: 1.5px #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #15202c;
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #597ee6;
}

.email-icon {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
}

.contact-img-wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}

.contact-img-wrap .overview-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: var(--violet);
  color: var(--footer-color);
  padding-top: 80px;
  padding-bottom: 54px;
  text-align: center;
  gap: 16px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--footer-color);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
  padding-bottom: 20px;
  padding-top: 20px;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  line-height: 160%;
  opacity: 0.75;
  color: var(--footer-color);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    position: static;
    padding-top: 30px;
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero-title {
    font-size: 48px;
    -webkit-text-stroke: 4px var(--title-border);
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .hero-sub {
    font-size: 18px;
    -webkit-text-stroke: 2px var(--title-border);
    line-height: 1.3;
  }

  .hero-text-block {
    position: static;
    margin-top: 0;
    padding: 30px 20px;
    background-color: var(--violet);
    width: 100%;
    background: linear-gradient(180deg, #597ee6 0%, #5ca0e7 100%);
  }

  .hero-image-wrap {
    position: static;
    height: auto;
    width: 100%;
  }
  .hero-image-wrap::before {
    height: 80px;
    background: linear-gradient(to bottom, var(--violet), transparent);
  }
  .hero-btn-block {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 40px 20px 60px;
    background-color: #5ca0e7;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -5px; /* Прибираємо можливу щілину між картинкою і блоком */
  }
  .gplay-btn {
    width: 100%;
    max-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 12px;
    justify-content: center;
  }

  .overview-img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border: none;
  }
  .mechanics-grid {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mechanics-card {
    padding: 10px;
  }
  .mechanics-card p {
    max-width: 200px;
  }

  .contact-img-wrap {
    width: 100%;
    max-width: none;
    padding: 0;
    padding-bottom: 0;
  }

  .contact-img-wrap .overview-img {
    width: 100%;
    height: 300px;
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    border: none;
    display: block;
  }

  .highlights-tiles {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .highlights-center {
    display: contents;
    padding-top: 10px;
  }

  .img-1 {
    order: 2;
  }
  .item-1 {
    order: 1;
  }

  .img-2 {
    order: 4;
  }
  .item-2 {
    order: 3;
  }

  .img-3 {
    order: 6;
  }
  .item-3 {
    order: 5;
  }

  .img-4 {
    order: 8;
  }
  .item-4 {
    order: 7;
  }

  .img-5 {
    order: 10;
  }
  .item-5 {
    order: 9;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none !important;
  }

  .slider-wrap {
    max-width: 100%;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    padding: 0 10px;
    transition: none;
    transform: none !important;
  }

  .slide-item {
    scroll-snap-align: center;
  }

  .slider-container::before,
  .slider-container::after {
    display: none;
  }
  .slider-wrap {
    overflow: hidden;
    max-width: 100%;
  }
  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .mechanics-grid {
    grid-template-columns: 1fr;
  }
}

section {
  width: 100%;
}

.pp-body {
  background: #e3e5f5;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  color: #15202c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  color: #15202c;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
  padding: 24px 0 0 204px;
}
.back-link:hover {
  opacity: 1;
}
.back-link svg {
  flex-shrink: 0;
}

/* ── MAIN CONTENT ── */
.pp-main {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 64px;
}

/* ── PAGE TITLE ── */
.page-title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #354661;
  text-align: center;
  margin: 32px 0 40px;
}

/* ── LAST UPDATED / INTRO ── */
.intro-block {
  margin-bottom: 32px;
}
.intro-block p {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
}
.intro-block p + p {
  margin-top: 4px;
}

/* ── SECTION ── */
.policy-section {
  margin-bottom: 32px;
}

/* ── SUBTITLE ── */
.policy-section h2 {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
  margin-bottom: 20px;
}

/* ── BODY TEXT ── */
.policy-section p,
.policy-section li {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-section ul li {
  padding-left: 18px;
  position: relative;
}
.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #15202c;
}

/* nested list for GDPR rights */
.policy-section ul.rights-list {
  gap: 12px;
}
.policy-section ul.rights-list > li {
  padding-left: 0;
}
.policy-section ul.rights-list > li::before {
  display: none;
}

.rights-list .right-title {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.rights-list .right-title::before {
  content: "•";
  flex-shrink: 0;
  margin-top: 0;
}
.rights-list .right-desc {
  padding-left: 14px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 150%;
  color: #15202c;
}

/* ── LINKS ── */
a.policy-link {
  color: #0a3b67;
  text-decoration: none;
  font-size: 14px;
  font-family: "Livvic", sans-serif;
  border-bottom: 1px solid rgba(10, 59, 103, 0.3);
  transition: border-color 0.15s;
}
a.policy-link:hover {
  border-bottom-color: #0a3b67;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .pp-main {
    padding: 0 20px 48px;
  }
  .page-title {
    font-size: 42px;
  }
  .back-link {
    padding: 24px 0 0 20px;
  }
}
