
 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
    font-family: 'TildaSans', Arial, sans-serif;
   color: #333;
   font-size: 14px;
   background: #fff;
   max-width: 1200px;
   margin: auto;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 }

 a {
   text-decoration: none;
   color: inherit;
 }

 /* HEADER */
 header {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   background: #fff;
   top: 0;
   z-index: 100;
   height: 100px;
   margin: 20px 0;
   position: relative;
 }

 .mobile-menu {
   display: flex;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-right: auto;
 }

 .logo img {
   height: 80px;

 }

 nav {
   display: flex;
   gap: 20px;
   align-items: center;
 }

 .dropdown {
   position: relative;
   display: inline-block;
 }

 .dropdown-trigger {
   font-family: 'TildaSansRegular';
   font-size: 18px;
   font-weight: 400;
   color: #333;
   transition: color .2s;
   text-decoration: none;
   cursor: pointer;
 }

 .dropdown-trigger:hover {
   color: #c8192b;
 }

 .dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: #fff;
   min-width: 220px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   border-radius: 8px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
   z-index: 1000;
   margin-top: 10px;
   overflow: hidden;
 }

 .dropdown-menu.show {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .menusub {
   display: block;
   padding: 12px 20px;
   font-family: 'TildaSansRegular';
   font-size: 16px;
   font-weight: 400;
   color: #333;
   text-decoration: none;
   transition: background 0.2s, color 0.2s;
   white-space: nowrap;
 }

 .menusub:hover {
   background: #f5f5f5;
   color: #c8192b;
 }


 .dropdown-menu::before {
   content: '';
   position: absolute;
   top: -8px;
   left: 20px;
   width: 0;
   height: 0;
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-bottom: 8px solid #fff;
 }

 nav a {
   font-family: 'TildaSansRegular';
   font-size: 18px;
   font-weight: 400;
   color: #333;
   transition: color .2s;
 }

 nav a:hover {
   color: #c8192b;
 }

 .nav-icons {
   display: flex;
   gap: 10px;
   margin-left: 20px;
 }

 .icon-btn {
   width: 32px;
   height: 32px;
   border-radius: 50%;

   display: flex;
   align-items: center;
   justify-content: center;

   font-size: 13px;
   cursor: pointer;
 }

 .t-sociallinks__svg {
   color: #ffffff;
   /* белый цвет */
 }

 /* HERO BANNERS */

 .swiper-wrapper {
   gap: 20px
 }

 .hero-banner {
   position: relative;
   flex: 1;
   /* все баннеры одинаковой ширины */
   max-width: 400px;
   /* ограничение максимальной ширины */
   overflow: hidden;
   border-radius: 12px;
   /* опционально: скругление углов */
   cursor: pointer;
 }

 .hero-banner img {
   width: 100%;
   height: 470px;
   /* фиксированная высота */
   object-fit: cover;
   /* обрезает картинку сверху и снизу, сохраняя пропорции */
   display: block;
   transition: transform 0.3s ease;
 }



 .overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   /* background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); */
   color: white;
   padding: 20px;
   transition: transform 0.3s ease;
   transform: translateY(0);
 }

 .overlay span {
   font-family: 'TildaSans', Arial, sans-serif;
   font-weight: 600;
   font-size: 26px;
   background-color: rgba(0, 0, 0, .3);
   display: block;
   margin: 40px 0;
   width: fit-content;
 }

 .overlay hr {
   border: none;
   /* Убираем границу */
   background-color: rgb(241, 241, 241);
   /* Цвет линии */
   color: rgb(255, 255, 255);
   /* Цвет линии для IE6-7 */
   height: 1px;
   /* Толщина линии */
   position: relative;
   top: -18px;
 }

 .t-card__descr {
   max-height: 0;
   opacity: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.2s ease;
   font-size: 14px;
   line-height: 1.4;
   margin-top: 0;

 }

 .t-card__descr strong {
   font-family: 'TildaSans', Arial, sans-serif;
   font-weight: 600;
   font-size: 18px;
   background-color: rgba(0, 0, 0, .3);
 }

 .hero-banner:hover .overlay {
   transform: translateY(-60px);
   /* поднимаем overlay вверх */
 }

 .t-card__descr .btnflex__text {
   font-family: 'TildaSans', Arial, sans-serif;
   font-weight: 600;
   font-size: 13px;
   background-color: rgba(0, 0, 0, .7);
   border: none;
   border-radius: 15px;
   color: #fff;
   position: absolute;
   padding: 15px;
   margin-top: 20px;

 }

 .hero-banner:hover .t-card__descr {
   max-height: 300px;
   /* достаточно для содержимого */
   opacity: 1;
   margin-top: 10px;
 }



 /* TRUST BADGES */
 .trust-row {
   display: flex;
   justify-content: space-between;
   gap: 60px;
   padding: 28px 40px;

 }

 .trust-item {
   /*display: flex; */
   align-items: center;
   gap: 12px;
   font-family: 'TildaSans', Arial, sans-serif;
 }

 .trust-icon {
   display: flex;
   /* font-weight: 600;*/
   font-size: 18px;
   color: #555;
   align-items: center;

 }

 .trust-icon img {
   width: 50px;
 }


 .trust-text p {
   display: block;
   font-size: 14px;
   color: #222;
   margin-top: 20px;
 }

 /* DIVIDER */
 .divider {
   width: 20%;
   height: 2px;
   background: #ccc;
   margin: 20px auto;
   /* центрирует по горизонтали */
 }

 /* CATALOG SECTION */
 .catalog-section {
   display: flex;
   gap: 0;
   padding: 30px 0px;
   font-family: 'TildaSans', Arial, sans-serif;
 }

 .filter-wrapper.collapsed .custom-checkbox:nth-child(n+6) {
   display: none;
 }

 /* SIDEBAR */
 .sidebar {
   width: 250px;
   flex-shrink: 0;
   padding-right: 20px;
 }

 .filters-toggle {
   display: none;
 }

 .sidebar .cat-link {
   display: block;
   font-size: 14px;
   color: #333;
   padding: 3px 0;
   cursor: pointer;
   transition: color .2s;
   font-weight: 600;
   padding-bottom: 20px;
 }

 .sidebar .cat-link:hover {
   color: #c8192b;
 }

 .sidebar .section-title {
   font-size: 14px;
   font-weight: 700;
   color: #1f1f1f;
   margin-top: 16px;
   margin-bottom: 6px;
 }

 .sidebar label {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 14px;
   font-weight: 400;
   color: #333;
   padding-bottom: 10px;
   cursor: pointer;
 }

 /* контейнер */
 .custom-checkbox {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: bold;
   cursor: pointer;
 }

 /* скрываем нативный */
 .custom-checkbox input {
   display: none;
 }

 /* сам квадрат */
 .checkmark {
   width: 20px;
   height: 20px;
   border: 2px solid #000;
   display: inline-block;
   position: relative;
 }

 /* галочка */
 .checkmark::after {
   content: '';
   position: absolute;
   width: 6px;
   height: 10px;
   border: solid #000;
   border-width: 0 2px 2px 0;
   top: 2px;
   left: 6px;
   transform: rotate(45deg);
   opacity: 0;
 }

 /* когда чекнут */
 .custom-checkbox input:checked+.checkmark::after {
   opacity: 1;
 }

 .tutto {
   text-decoration: underline;
   cursor: pointer;
   font-size: 14px;
 }

 /* PRODUCTS GRID */
 .products-area {
   flex: 1;
 }

 .products-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 36px;
   margin-bottom: 30px;
 }

 .product-card {
   font-family: 'TildaSans', Arial, sans-serif;
   overflow: hidden;
   padding: 12px;
   position: relative;
   background: #fff;
   transition: box-shadow .2s;
   width: 100%;
   box-sizing: border-box;
   height: 405px;
 }



 .badge {
   position: absolute;
   top: 8px;
   left: 8px;
   background: #ff4a4a;
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   padding: 5px 7px;
   border-radius: 50px;
   z-index: 2;

 }

 .bage.top {
   background: #e67e22;
 }

 .badge-bonus {
   position: absolute;
   top: 8px;
   right: 8px;
   background: #e74c3c;
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   padding: 5px 6px;
   border-radius: 50px;
   z-index: 2;
   text-align: center;
   line-height: 1.3;
 }
  .product-badge{
   position: absolute;
   top: 8px;
   right: 8px;
   background: #e74c3c;
   color: #fff;
    font-size: 23px;
    font-weight: 700;
    padding: 15px 10px;
   border-radius: 50px;
   z-index: 2;
   text-align: center;
   line-height: 1.3;
 }

 .product-card img {
   width: 210px;
   height: 210px;
   object-fit: cover;
   display: block;
   margin-bottom: 10px;
 }

 .product-name {
   font-size: 16px;

   color: #222;
   margin-bottom: 10px;
 }

 .product-principle {
   font-size: 13px;
   font-weight: 300;
   color: #888;
   margin-bottom: 23px;
 }

 .product-price {
   font-size: 16px;
   font-weight: 700;
   color: #222;
   margin-bottom: 8px;
 }

 .product-price .old-price {
   font-size: 13px;
   color: #c8192b;
   text-decoration: line-through;
   font-weight: 400;
   margin-left: 4px;
 }

 .btn-offer {
   display: block;
   width: auto;
   text-align: center;
   background: #222;
   color: #fff;
   border: none;
   padding: 12px 0;
   font-size: 16px;
   font-weight: 700;
   border-radius: 4px;
   cursor: pointer;
   transition: background .2s;
   font-family: 'Lato', sans-serif;
   margin: 24px auto;

   padding: 10px 20px;
   position: absolute;
   bottom: 0;
 }

 .btn-offer:hover {
   background: #c8192b;
 }

 /* REFERRAL BANNER */
 .referral-section {
   display: flex;
   align-items: flex-start;
   gap: 40px;
   background: #fff;
   padding: 40px;
   border-top: 2px solid #cfcfcf;
   border-bottom: 2px solid #cfcfcf;
 }

 .referral-section img {
   width: 260px;
   object-fit: cover;
   border-radius: 14px;
 }

 .referral-content {
   padding-left: 90px;
 }

 .referral-content h2 {
   font-family: 'Playfair Display', serif;
   font-size: 28px;
   font-weight: 600;
   margin-bottom: 14px;
   line-height: 1.17;
   font-family: 'TildaSans', Arial, sans-serif;
 }

 .referral-content p {
   font-size: 20px;
   color: #555;
   line-height: 1.6;
   margin-bottom: 16px;
   line-height: 1.17;

   font-family: 'TildaSans', Arial, sans-serif;
 }

 .referral-content p strong {
   color: #222;
 }

 .btn-more {
   display: inline-block;
   border: 1px solid #222;
   color: #222;
   padding: 23px 60px;
   font-size: 16px;
   font-weight: 700;
   letter-spacing: 0.5px;
   cursor: pointer;
   transition: all .2s;
   font-family: 'Lato', sans-serif;
   background: transparent;
 }

 .btn-more:hover {
   background: #222;
   color: #fff;
 }

 /* WHY US */
 .why-us {
   padding: 50px 40px;
   text-align: center;
 }

 .why-us h2 {
   font-family: 'TildaSans', Arial, sans-serif;
   font-size: 42px;
   font-weight: 600;
   margin-bottom: 8px;
   padding-bottom: 40px;
 }

 .why-us .sub {
   font-size: 25px;
   color: #666;
   margin-bottom: 40px;
   font-weight: 300;
 }

 .why-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   text-align: left;
 }

 .why-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .why-icon {
   font-family: 'TildaSans', Arial, sans-serif;
   font-size: 28px;
   color: #555;
   margin-bottom: 4px;
   display: flex;
   align-items: center;
   gap: 30px
 }

 .why-icon img {
   width: 50px;
 }

 .why-icon h4 {
   font-size: 22px;
   font-weight: 700;
   color: #222;
 }

 .why-item p {
   font-family: 'TildaSans', Arial, sans-serif;
   font-size: 14px;
   color: #666;
   line-height: 1.6;
   font-weight: 300;
 }

 /* FOOTER */
 footer {
   background: #000;
   color: #ccc;
   padding: 0px 40px 20px;
   position: relative;
 }

 footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 49%;
   right: 49%;
   margin-left: -50vw;
   margin-right: -50vw;
   width: 100vw;
   height: 100%;
   /* или min-height: 100% */
   background: #000;
   /* ваш чёрный фон */
   z-index: -1;
   /* чтобы был под контентом */
 }

 .footer-top {
   display: flex;
   gap: 40px;
   padding-bottom: 30px;

   flex-wrap: wrap;
 }



 .footer-inner {
   font-family: 'TildaSans', Arial, sans-serif;
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 260px 150px 150px 142px 106px;
   gap: 65px;
   align-items: start;
 }

 /* ── BRAND ── */
 .brand img {
   width: 260px;
   margin-bottom: 25px;
   display: block;
 }

 .brand-address {
   font-size: 16px;
   line-height: 1.75;
   color: #bbb;
 }

 .brand-address strong {
   color: #fff;
   font-weight: 700;
 }

 .brand-address a {
   color: #bbb;
   text-decoration: none;
 }

 .brand-address a:hover {
   color: #fff;
 }

 /* ── COLUMNS ── */
 .col-title {
   font-family: 'Lato', sans-serif;
   font-weight: 700;
   font-size: 16px;
   color: #fff;
   margin-bottom: 14px;
 }

 .col-links a {
   display: block;
   color: #ffffff;
   text-decoration: none;
   font-size: 16px;
   margin-bottom: 18px;
   transition: color 0.2s;
 }

 .col-links a:hover {
   color: #fff;
 }

 /* ── SIGNUP ── */
 .col-signup p {
   font-size: 13px;
   color: #ffffff;
   line-height: 1.65;
 }

 .col-signup .gift-link {
   display: inline-block;
   margin-top: 6px;
   color: #fff;
   font-weight: 700;
   font-size: 13px;
   text-decoration: none;
   letter-spacing: 0.01em;
   cursor: pointer;
 }

 .col-signup .gift-link:hover {
   opacity: 0.75;
 }

 /* ── SOCIAL ── */
 .col-social {
   display: flex;
   gap: 10px;
   align-items: flex-start;
   padding-top: 4px;
 }

 .social-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1.5px solid #555;
   background: #fff;
   color: #000000;
   text-decoration: none;
   transition: border-color 0.2s, color 0.2s;
 }

 .social-btn:hover {
   background: #333;
   border-color: #333;
   color: #fff;
 }

 .social-btn svg {
   width: 18px;
   height: 18px;
   fill: currentColor;
 }

 .footer-bottom {

   display: flex;
   justify-content: end;
   align-items: center;
   padding-top: 20px;
   padding-bottom: 20px;
   flex-wrap: wrap;
   gap: 12px;
 }

 .footer-bottom-btns {
   display: flex;
   gap: 10px;
 }

 .footer-btn {
   background: transparent;
   border: 1px solid #555;
   border-radius: 5px;
   color: #000000;
   background-color: #fff;
   padding: 7px 16px;
   font-size: 15px;
   cursor: pointer;
   font-family: 'TildaSans', Arial, sans-serif;
   transition: all .2s;
 }

 .footer-btn:hover {
   background: #242424;
   color: #fff;
 }

 .footer-social {
   display: flex;
   gap: 8px;
 }

 .footer-social span {
   width: 28px;
   height: 28px;
   background: #333;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   cursor: pointer;
   color: #ccc;
 }

 .program-header {
   position: relative;

   width: 100vw;
   margin-left: calc(49% - 50vw);

   background-image: url("../images/kalix-club.jpg");
   background-size: cover;
   background-position: center 53%;

   color: white;
   text-align: center;
   padding: 60px 30px;

   overflow: hidden;
 }

 .program-header::before {
   content: "";
   position: absolute;
   inset: 0;

   background: linear-gradient(to bottom,
       rgba(0, 0, 0, 0.25) 0%,
       rgba(0, 0, 0, 0.55) 60%,
       rgba(0, 0, 0, 0.75) 100%);

   z-index: 1;
 }

 .program-header h1 {
   position: relative;
   z-index: 2;
   font-size: 48px;
   font-family: 'TildaSans', Arial, sans-serif;
   text-transform: uppercase;
   font-weight: 400;
   letter-spacing: 2px
 }

 .program-body p {
   font-family: 'TildaSansLight', Arial, sans-serif;
   font-weight: 100;
   color: #433f3f;
   padding: 40px 0;
   line-height: 1.55;
   font-size: 22px;
   max-width: 760px;
   margin: auto;
 }

 .program-body b {
   font-weight: 700;
 }

 .program-image-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   max-width: 1024px;
   margin: auto;
 }

 .drug img {
   width: 350px;
 }

.program-body ol {
    font-family: 'TildaSansLight', Arial, sans-serif;
  color: #433f3f;
  padding: 0 20px;
  line-height: 1.55;
  font-size: 20px;
  max-width: 760px;
  margin: auto;
}

  .pages-body p {
   font-family: 'TildaSansLight', Arial, sans-serif;
   font-weight: 100;
   color: #433f3f;
   padding-top: 20px;
   line-height: 1.55;
   font-size: 22px;
   max-width: 760px;
   margin: auto;
 }
  .pages-body ul {
 font-family: 'TildaSansLight', Arial, sans-serif;
   font-weight: 100;
   color: #ff8562;
   padding-top: 20px;
   line-height: 1.55;
   font-size: 22px;
   max-width: 760px;
   margin: auto;
padding-left: 20px;
  }
 .pages-body strong {
   font-weight: 700;
 }
 .pages-body  h1 {
  font-size: 40px;
 }
  

 .grey-bg {
  background-color: #ebebeb;
    position: relative;
  width: 100vw;
  margin-left: calc(49% - 50vw);

 }

.pages-grid-wrap {
  max-width: 1199px;
  margin: auto;
}
.pages-grid {
  display: grid;
  /* По умолчанию (для мобильных) — один столбец */
  grid-template-columns: 1fr; 
  gap: 50px; /* Расстояние между элементами */
  font-size: 20px;
}
.cert-grid {
    display: grid;
  /* По умолчанию (для мобильных) — один столбец */
  grid-template-columns: 1fr; 
  gap: 50px; /* Расстояние между элементами */
  font-size: 20px;
}
.cert-grid img {
  max-width: 350px;
  display: block;
        margin: auto;
        cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pages-cell {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pages-cell img {
  width: 64px;
}
/* Настраиваем вид для больших экранов (например, от 768px) */
@media (min-width: 768px) {
  .pages-grid {
    /* Два столбца: левый подстраивается под контент, правый забирает остаток */
    grid-template-columns: 1fr 2fr; 
    align-items: start;
  }
    .cert-grid {
    /* Два столбца: левый подстраивается под контент, правый забирает остаток */
    grid-template-columns: 1fr 1fr 1fr; 
    align-items: start;
  }
}
@media (max-width: 1024px) {
.program-header h1 {
  font-size: 44px;
  text-align: left;
}
.program-header {
  padding: 30px    20px;
          padding-right: 320px;
                 padding-left: 100px;
}
}

/* === Модальное окно === */
.modal-img {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.modal-img-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-img-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 8px;
    display: block;
}

.img-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: white;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: all 0.2s;
}

.img-close:hover {
    background: #ff4444;
    color: white;
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .modal-img-content {
        max-width: 95%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
.program-header h1 {
  font-size: 30px;
  text-align: left;
}
.program-header {
  padding: 41px  20px;
}
.program-body p {
font-size: 16px;
}
.program-body ol {
font-size: 16px;

}
      .pages-body p {
     font-size: 16px;
   }

   .pages-body ul {
     font-size: 16px;

   }
    .pages-body  img {
      width: 100%;
 }
.pages-cell img {
  width: 48px;
}
.drug img {
  width: 125px;
}
.program-body {
  padding: 0 15px;
}
.swiper-wrapper {
  gap: 0;
}
}

/*--------- FAQ ---------------*/
.faq-wrap {
    font-family: 'TildaSans', 'Inter', sans-serif;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #222;
    
  }
.sr-only {
  font-size: 38px;
  color: #7d7d7d;
  font-weight: 100;
}
  .faq-subtitle {
    font-size: 13px;
    letter-spacing: 0.08em;

    text-transform: uppercase;
    margin: 0 0 6px;
  }

  .faq-title {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 40px;
    letter-spacing: -0.5px;
    position: relative;
  }

  .faq-section-label {
    font-size: 38px;
    font-weight: 500;
    margin: 48px 0 16px;
    color: #000;
  }

  .faq-divider {
    border: none;
    border-top: 1px solid #e1e0e0;
    margin: 0 0 4px;
     width: 70vw;
  margin-left: calc(-31%);
  }

  .faq-item {
    border-bottom: 1px solid #e1e0e0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
  }

  .faq-question:hover .faq-q-text {
    opacity: 0.75;
  }

  .faq-q-text {
    flex: 1;
    line-height: 1.5;
    transition: opacity 0.15s;
    font-size: 22px;
    font-weight: 600;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    color: var(--color-text-secondary);
    transition: transform 0.25s ease;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .faq-icon::before {
    width: 12px; height: 1.5px;
    top: 9.25px; left: 4px;
  }

  .faq-icon::after {
    width: 1.5px; height: 12px;
    top: 4px; left: 9.25px;
  }

  .faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .faq-item.open .faq-icon::before {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .faq-answer-inner {
    font-size: 16px;
    line-height: 1.75;
   font-style:italic;
    padding-bottom: 20px;
    max-width: 90%;
  }

  .faq-item.open .faq-answer {
    max-height: 700px;
    padding-top: 0;
  }
.faq-wrap h1 {
    text-align: center;
    margin: 31px auto;
    display: block;
    font-size: 37px;
    color: #636262;
}

.pages-body .title {
  font-family: 'TildaSansLight', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: auto;
    margin-top: 31px;
    display: block;
    max-width: 760px;

}
.pages-body .subtitle {
  font-family: 'TildaSansLight', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: auto;
    margin-top: 31px;
    display: block;
    max-width: 760px;

}
@media (max-width: 1024px) {
      .faq-divider {

  margin-left: calc(0%);
  }
}
  @media (max-width: 480px) {
    .faq-title { font-size: 24px; }
    .faq-section-label { font-size: 18px; }
    .faq-question { font-size: 14px; padding: 14px 0; }

      .faq-divider {

  margin-left: calc(11%);
  }
  }

  .pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.page {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.page:hover {
  background: #f5f5f5;
}

.page.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.page.nav {
  font-weight: bold;
}

.dots {
  padding: 6px 8px;
  color: #999;
}


