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

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

:root {
  --color-bg: #0d122c;
  --color-header: #0c1225;
  --color-footer: #0a0e1f;
  --color-accent: #8882d3;
  --color-accent2: #da16ca;
  --color-white: #ffffff;
  --color-card-bg: rgba(8, 10, 9, 0.2);
  --font-main: 'Nunito', sans-serif;
  --font-secondary: 'Blinker', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border-radius: 32px;
  border: 1px solid var(--color-white);
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent2) 100%);
  box-shadow: 0px 4px 8px 0px rgba(218, 22, 202, 0.8),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 1);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  max-width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0px 8px 20px 0px rgba(218, 22, 202, 1),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 1);
}

.badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 32px;
  border: 1px solid var(--color-white);
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent2) 100%);
  box-shadow: 0px 4px 8px 0px rgba(218, 22, 202, 0.8),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge--number {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
}

.header {
  background: var(--color-header);
  border-bottom: 1px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
}

.header__logo img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-link {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  transition: color 0.2s ease;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__logo {
  transition: opacity 0.2s ease;
}

.header__logo:hover {
  opacity: 0.85;
}

.header__burger {
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(ellipse at 50% 0%, #5469b5 0%, #425393 25%, #313e71 50%, #1f284e 75%, #0d122c 100%);
  overflow: hidden;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: var(--color-header);
  border-bottom: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.mobile-menu__header .header__logo {
  font-size: 24px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__bg-char {
  position: absolute;
  left: 50%;
  top: 411px;
  transform: translateX(-50%);
  width: 497px;
  height: 532px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.mobile-menu__bg-char img {
  width: 497px;
  height: 532px;
  object-fit: cover;
}

.mobile-menu__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  z-index: 1;
}

.mobile-menu__nav-link {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.mobile-menu__cta {
  position: absolute;
  bottom: 106px;
  left: 50%;
  transform: translateX(-50%);
  width: 406px;
  z-index: 1;
}

.mobile-menu__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  z-index: 1;
}

.mobile-menu__indicator::after {
  content: '';
  display: block;
  width: 134px;
  height: 5px;
  background: var(--color-white);
  border-radius: 100px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #5469b5 0%, #425393 25%, #313e71 50%, #1f284e 75%, #0d122c 100%);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 42px;
  position: relative;
  min-height: 740px;
}

.hero__bg-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(168.68deg);
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(4px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero__text {
  position: relative;
  z-index: 1;
  width: 736px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__title {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  line-height: 1;
}

.hero__body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.hero__image {
  position: absolute;
  left: 789px;
  top: 143px;
  width: 497px;
  height: 532px;
  object-fit: cover;
  z-index: 1;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.review-studio {
  background:
    linear-gradient(
      to bottom,
      #0d122c 0%,
      transparent 25%,
      transparent 75%,
      #0d122c 100%
    ),
    url(/wp-content/themes/xalvadorhex/assets/images/bg1.png) center center / cover no-repeat;
}


.section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.section__title {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  line-height: 1.1;
}

.section__subtitle {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.section__body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.section__closing {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-white);
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(84, 105, 181, 0.8);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 32px 0px rgba(84, 105, 181, 1);
  border-color: var(--color-accent);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card__title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
}

.card__body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.card__body--blinker {
  font-family: var(--font-secondary);
}

.who-we-are__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 546px;
  position: relative;
  z-index: 1;
}

.who-we-are__lupa {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 566px;
  height: 653px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.who-we-are__group21 {
  position: absolute;
  right: -600px;
  top: 50%;
  transform: translateY(-50%);
  width: 2172px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.testimonial-card__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-card__name {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
}

.testimonial-card__name--blinker {
  font-family: var(--font-secondary);
}

.testimonial-card .card__body {
  font-weight: 700;
}

.footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-accent);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__contact-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer__contact-row span {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.footer__social-link img {
  width: 24px;
  height: 24px;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__nav-link {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  transition: color 0.2s ease;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
  border-radius: 1px;
  transition: width 0.25s ease;
}

.footer__nav-link:hover::after {
  width: 100%;
}

.footer__divider {
  width: 100%;
  max-width: 1116px;
  height: 1px;
  overflow: hidden;
}

.footer__divider img {
  width: 100%;
  height: 1px;
}

.footer__divider--mobile {
  display: none;
}

.footer__copyright {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

.page-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  inset: 0;
  width: 100%;
}

.page-decor__ellipse2 {
  position: absolute;
  left: -402px;
  top: 710px;
  width: 1120px;
  height: 1120px;
}

.page-decor__ellipse3 {
  position: absolute;
  left: -521px;
  top: 2363px;
  width: 1120px;
  height: 1120px;
}

.page-decor__group27 {
  position: absolute;
  left: -558px;
  top: 2935px;
  width: 2172px;
  opacity: 0.4;
}

.page-decor__bg-art {
  position: absolute;
  width: 1151px;
  height: 1365px;
  transform: rotate(168.68deg);
  filter: blur(4px);
  opacity: 0.3;
}

.page-decor__bg-art--1 {
  left: -64px;
  top: 553px;
}

.page-decor__bg-art--2 {
  left: -183px;
  top: 2206px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 16px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-header);
  border: 1px solid var(--color-white);
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(84, 105, 181, 0.8);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner__title {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.cookie-banner__text {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.cookie-banner__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border-radius: 32px;
  border: 1px solid var(--color-white);
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent2) 100%);
  box-shadow: 0px 4px 8px 0px rgba(218, 22, 202, 0.8),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 1);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__accept:hover {
  transform: scale(1.04);
  box-shadow: 0px 8px 20px 0px rgba(218, 22, 202, 1),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 1);
}

.cookie-banner__learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border-radius: 32px;
  border: 1px solid var(--color-white);
  background: transparent;
  box-shadow: 0px 4px 8px 0px rgba(84, 105, 181, 0.6),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 0.1);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__learn:hover {
  transform: scale(1.04);
  box-shadow: 0px 8px 20px 0px rgba(84, 105, 181, 0.8),
              inset 0px 4px 8px 0px rgba(255, 255, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .container {
    padding: 0 12px;
  }

  .header__inner {
    padding: 12px;
  }

  .header__logo {
    font-size: 24px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__inner {
    padding: 48px 12px;
    min-height: auto;
  }

  .hero__bg-art {
    display: none;
  }

  .hero__text {
    width: 100%;
    gap: 12px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__image {
    display: none;
  }

  .btn.hero__cta {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 36px;
  }

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

  .card__title {
    white-space: normal;
  }

  .who-we-are__text {
    max-width: 100%;
  }

  .who-we-are__lupa {
    display: none;
  }

  .who-we-are__group21 {
    display: none;
  }

  .footer__inner {
    padding: 24px 12px;
  }

  .footer__social {
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .footer__divider--desktop {
    display: none;
  }

  .footer__divider--mobile {
    display: block;
    max-width: 100%;
  }

  .footer__contact-row span {
    white-space: normal;
  }

  .mobile-menu__cta {
    width: calc(100% - 24px);
    max-width: 406px;
  }

  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner__inner {
    padding: 24px;
  }

  .cookie-banner__title {
    font-size: 36px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__accept,
  .cookie-banner__learn {
    width: 100%;
    max-width: 100%;
  }
}

.catalog-section {
  background: radial-gradient(ellipse at 50% 0%, #5469b5 0%, #425393 25%, #313e71 50%, #1f284e 75%, #0d122c 100%);
  overflow: hidden;
}

.catalog-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 42px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog-section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.catalog-section__title {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  line-height: 1.1;
}

.catalog-section__subtitle-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}

.catalog-section__subtitle-title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  line-height: normal;
  width: 100%;
}

.catalog-section__subtitle-desc {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  width: 100%;
}

.game-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.game-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-white);
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(84, 105, 181, 0.8);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 40px 0px rgba(84, 105, 181, 1);
  border-color: var(--color-accent);
}

.game-card__image {
  transition: transform 0.4s ease;
}

.game-card:hover .game-card__image {
  transform: scale(1.03);
}

.game-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.game-card__title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: normal;
  width: 100%;
}

.game-card .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .catalog-section__inner {
    padding: 48px 12px;
  }

  .catalog-section__title {
    font-size: 36px;
  }

  .game-cards-grid {
    grid-template-columns: 1fr;
  }
}

.game-page-section {
  background: radial-gradient(ellipse at 50% 0%, #5469b5 0%, #425393 25%, #313e71 50%, #1f284e 75%, #0d122c 100%);
  overflow: hidden;
}

.game-page-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 42px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.game-hero-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.game-hero-card {
  flex: 1;
  background: var(--color-card-bg);
  border: 1px solid var(--color-white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px 4px 16px 0px rgba(84, 105, 181, 0.8);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-hero-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.game-hero-card__title {
  display: none;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: normal;
  width: 100%;
}

.game-hero-card .btn {
  width: 100%;
}

.game-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.game-hero-title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-page-h1 {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  text-transform: capitalize;
}

.game-page-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-page-block__title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  text-transform: capitalize;
}

.game-page-list {
  list-style: disc;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-page-list li {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .game-page-section__inner {
    padding: 48px 12px;
    gap: 24px;
  }

  .game-hero-row {
    flex-direction: column;
  }

  .game-hero-card {
    width: 100%;
    flex: none;
  }

  .game-hero-card__title {
    display: block;
  }

  .game-page-h1 {
    font-size: 36px;
  }
}

.policy-section {
  background: radial-gradient(ellipse at 50% 0%, #5469b5 0%, #425393 25%, #313e71 50%, #1f284e 75%, #0d122c 100%);
  overflow: hidden;
}

.policy-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 42px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-title {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 8px;
}

.policy-heading {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin-top: 8px;
}

.policy-text {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

.policy-list {
  list-style: disc;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-list li {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .policy-section__inner {
    padding: 48px 12px;
  }

  .policy-title {
    font-size: 36px;
  }
}
