* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	font-size: 18px;
	background: #f3f3f3;
	color: #2c2828;
	font-family: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
}

p {
	margin: 16px 0;
	line-height: 1.5;
}

h1 {
	margin: 0 0 16px 0;
	padding: 0;
	text-align: center;
	font-size: 36px;
}

h2 {
	margin: 0 0 16px 0;
	padding: 0;
	text-align: center;
	font-size: 22px;
}

.headline {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.full-width {
	width: 100%;
}

.rounded {
	border-radius: 16px;
}

.border-bottom-rounded {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.align-c {
	text-align: center;
}

.padding-h {
	padding-left: 24px;
	padding-right: 24px;
}

.padding-v {
	padding-top: 16px;
	padding-bottom: 16px;
}

.bordered {
	border-bottom: 2px solid #dedede;
}

.cl-primary {
	color: #f3213e;
}

.btn-primary {
  display: block;
  outline: 0;
  border: 0;
  cursor: pointer;
  background-image: linear-gradient(to right top, #0e7686, #1d7c8d, #288393, #31899a, #3a90a1);
  padding: 20px 32px;
  border-radius: 12px;
  color: #fff;
  width: 100%;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-primary:hover {
 
}            

.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	position: fixed;
	top: 0;
	left: calc(50% - 240px);
	width: 480px;
	z-index: 500;
}

.main-header .logo {
	display: block;
	text-decoration: none;
	cursor: pointer;
}

.main-header .logo img {
	height: 40px;
	width: auto;
}

.main-header .menu-toggle {
	display: block;
	cursor: pointer;
}

.main-menu {
	display: block;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: calc(50% - 240px);
	width: 480px;
	height: 100%;
	background: #bc8660;
	transform: translateY(-100%);
	transition: all .4s ease;
	padding: 16px 24px;
}

.main-menu.opened {
	transform: translateX(0);
}

.main-menu .top {
	display: flex;
	justify-content: flex-start;
	padding-bottom: 16px;
	border-bottom: 1px solid #a3a3a3;
}

.main-menu .top .menu-close {
	display: block;
	cursor: pointer;
}

.main-menu .top .menu-close img {
	width: 24px;
}

.main-menu ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 16px 0 0 0;
}

.main-menu ul li {
	display: block;
	padding: 0 0 8px 0;
}

.main-menu ul li a {
	color: #fff;
	text-decoration: none;
}

.main-menu ul li a:hover {
	text-decoration: underline;
}

.page {
	display: block;
	width: 480px;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
	padding-top: 48px;
}

.intro {
	background: #bc8660;
}

.thanks {
	background: #4bd542;
}

.intro h1,
.intro p {
	color: #fff;
}

.thanks h1,
.thanks p {
	color: #fff;
}

.price-wrapper {
	display: flex;
	justify-content: center;
	align-items: stretch;
	background: #e9e6e1;
	border-radius: 16px;
	overflow: hidden;
}

.price-wrapper .discount {
	display: flex;
	width: 80px;
	background-image: linear-gradient(to right top, #0e7686, #1d7c8d, #288393, #31899a, #3a90a1);
	justify-content: center;
	align-items: center;
	color: #fff;
	flex-direction: column;
}

.price-wrapper .discount .title {
	text-align: center;
	font-weight: 700;
}

.price-wrapper .discount .amount {
	text-align: center;
	font-weight: 700;
	font-size: 26px;
}

.price-wrapper .price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc(50% - 40px);
	padding: 20px 0;
}

.price-wrapper .price.old {
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	color: #fff;
}

.price-wrapper .price.new {
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	color: #fff;
}

.price-wrapper .price .price-title {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: inherit;
}

.price-wrapper .price .economy {
	display: inline-block;
	padding: 3px 5px;
	color: #fff;
	background: #db2f3b;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
}

.price-wrapper .price .price-number {
	display: block;
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: inherit;
}

.price-wrapper .price.old .price-number {
	text-decoration: line-through;
}

.cta {
	display: block;
	padding: 10px 0;
	position: relative;
}

.cta .discount {
	display: block;
	margin: 0 auto;
}

.cta .cta-title {
	font-size: 22px;
	font-weight: 600;
	display: block;
}

.cta .cta-description {
	font-size: 14px;
	font-weight: 500;
	display: block;
	padding: 0;
}

.form-input {
	margin-bottom: 16px;
}

.form-input input[type="text"],
.form-input input[type="tel"],
.form-input input[type="email"],
.form-input select {
    position: relative;
    cursor: text;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #d6d6e7;
   	padding: 20px 32px;
  	border-radius: 12px;
    color: rgb(35, 38, 59);
    box-shadow: inset 0 1px 4px 0 rgb(119 122 175 / 30%);
    overflow: hidden;
    transition: all 100ms ease-in-out;
    display: inline-block;
    width: 100%;
    outline: none;
}

.form-input select {
	-webkit-appearance: initial;
	display: block;
	cursor: pointer;
}

.form-input input[type="text"]:focus,
.form-input input[type="tel"]:focus,
.form-input input[type="email"]:focus,
.form-input select:focus {
  border-color: #00ba00;
  box-shadow: 0 1px 0 0 rgb(35 38 59 / 5%);
}

/*.form-input button {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	background: #fe0100;
	outline: none;
	color: #fff;
	border: 2px solid #c30302;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

.form-input button:hover {
	background: #c30302;
}*/

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #c30302;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: #fe0100;
  background-color: #fe0100;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.slider-box {
	position: relative;
	margin-top: 16px;
}

.slider-box .slider-control {
	display: block;
	position: absolute;
	bottom: 50%;
	z-index: 100;
	cursor: pointer;
	opacity: 0.6;
	transition: all .3s ease;
}

.slider-box .slider-control:hover {
	opacity: 1;
}

.slider-box .slider-control.prev {
	left: 9px;
}

.slider-box .slider-control.next {
	right: 9px;
	transform: rotate(180deg);
}

.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
}

.slick-dots li {
	margin: 0 !important;
}

.slick-dots li button:before {
	font-size: 10px !important;
	color: #db2f3b !important;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.steps .step {
	width: 100%;
	max-width: 100%;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: flex-start;
}

.steps .step img {
	width: 80px;
	min-width: 80px;
	padding: 16px;
	border-radius: 16px;
	border: 2px solid #f47b1f;
}

.steps .step span {
	display: block;
	font-size: 16px;
	text-align: left;
	font-weight: 600;
}

.footer a {
	color: #dc232b;
}

.thanks-icon {
	display: block;
	max-width: 70%;
	margin: 0 auto;
}

.bullet-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bullet-list li {
	display: block;
	padding: 8px 0 8px 34px;
	margin: 0;
	position: relative;
}

.bullet-list li::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 3px solid #806b5d;
	border-radius: 2px;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: calc(50% - 5px);
}

.check-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	display: block;
	padding: 8px 0 8px 40px;
	margin: 0;
	background-image: url('../images/check.png');
	background-repeat: no-repeat;
	background-position: center left;
}

.arrow-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.arrow-list li {
	display: block;
	padding: 8px 0 8px 40px;
	margin: 0;
	background-image: url('../images/right-arrow.png');
	background-repeat: no-repeat;
	background-position: center left;
}

.review-meter {
	display: block;
}

.review-meter .title {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
}

.review-meter .meter {
	display: block;
	width: 100%;
	height: 10px;
	border-radius: 5px;
	overflow: hidden;
	background: #adaaaa;
	margin-top: 14px;
}

.review-meter .meter span {
	display: block;
	width: 94%;
	height: 10px;
	border-radius: 5px;
	background: #db2f3b;
}

.order-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.order-list li {
	display: block;
	position: relative;
	padding: 10px 0 10px 42px;
}

.order-list li > span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	color: #fff;
	font-weight: 500;
	border-radius: 14px;
	background: #00ba00;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -14px;
}

.price-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-list .item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 50px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #9e84cb;
}

.price-list .item .price {
	width: 100px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	background: #9e84cb;
}

.price-list .item .title {
	display: flex;
	width: calc(100% - 100px);
	height: 50px;
	align-items: center;
	justify-content: flex-start;
	padding: 0 16px;
	font-weight: 700;
}

.price-list .item:last-child .title {
	color: #fff;
	background: #9e84cb;
}

.user-reviews {
 	display: block;
 	margin-top: 16px;
 }

 .user-reviews .single-review {
 	display: block;
 	padding: 16px 0;
 	border-bottom: 1px solid #555;
 }

 .user-reviews .single-review .top {
 	display: flex;
 	gap: 10px;
 	align-items: center;
 }

.user-reviews .single-review .top > img {
	width: 42px;
	height: 42px;
	border-radius: 21px;
}

.user-reviews .single-review .top div .name {
	display: block;
	font-weight: 600;
}

.user-reviews .single-review .top div .city {
	display: block;
	color: #999;
	font-size: 12px;
}

.user-reviews .single-review .stars {
	display: block;
	margin-top: 6px;
}

.user-reviews .single-review .stars > span {
	display: block;
	color: #999;
	font-size: 12px;
}

.user-reviews .single-review .stars > div {
	display: flex;
	gap: 2px;
	align-items: center;
	margin-top: 4px;
}

.user-reviews .single-review .stars > div img.disabled {
	opacity: 0.3;
}

.user-reviews .single-review .text {
	margin-top: 10px;
}

.user-reviews .single-review .date {
	display: block;
	color: #999;
	font-size: 12px;
	margin-top: 10px;
}

.intro-benefits {
	display: grid;
	padding: 12px;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	background: #fc7701;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.intro-benefits .item {
	display: block;
}

.intro-benefits .item img {
	display: block;
	width: 50px;
	margin: 0 auto;
	filter: invert(100%) sepia(7%) saturate(0%) hue-rotate(48deg) brightness(106%) contrast(106%);
}

.intro-benefits .item span {
	display: block;
	width: 90%;
	text-align: center;
	color: #fff;
	margin: 6px auto 0 auto;
	font-weight: 700;
	font-size: 12px;
}

.intro-list {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}

.intro-list .left {
	width: 60%;
}

.intro-list .right {
	width: calc(100% - (60% + 16px));
}

.remains {
	display: block;
	padding: 12px;
	border-radius: 12px;
	background: #0477ca;
	text-align: center;
	margin-top: 8px;
}

.remains .title {
	display: block;
	text-align: center;
	font-weight: 500;
	color: #fff;
}

.remains .title span {
	display: inline-block;
	margin: 0 auto;
	padding: 3px 5px;
	border-radius: 4px;
	color: #2e2e2e;
	font-weight: 700;
	background: #fff;
	margin-top: 4px;
}

.video-box video {
	width: 100%;
}

.details {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

.details .row {
	display: flex;
	padding: 12px 12px;
	align-items: flex-start;
	justify-content: space-between;
}

.details .row:nth-child(2n-1) {
	background: #806b5d;
  color: #fff;
}

.details .row:nth-child(2n) {
	background: #8d8d8d;
  color: #fff;
}

.details .row div {
	max-width: 40%;
}

.details .row .left {
	text-align: left;
}

.details .row .right {
	text-align: right;
}

.benefits {
	display: block;
	margin: 16px 0 0 0;
}

.benefits .item {
	display: block;
	margin-bottom: 16px;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	border: 6px solid #358f9f;
}

.benefits .item img {
	width: 100%;
	border-radius: 16px;
}

.benefits .item .title {
	display: block;
	margin-top: 16px;
	padding: 0 16px;
	text-align: center;
	font-weight: 700;
	color: #358f9f;
}

.benefits .item .text {
	display: block;
	padding: 16px;
	text-align: center;
}
/* ================================================
   ВИПРАВЛЕННЯ ТА ПОКРАЩЕННЯ (додано до site.css)
   ================================================ */

/* BUG FIX: <style> теги з форми перенесено сюди */
.checkbox-row {
  width: 100%;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.checkbox-minimal {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  gap: 10px;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-minimal input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #0e7686;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  margin-top: 1px;
}

.checkbox-minimal input[type="checkbox"]:checked {
  background: #0e7686;
}

.checkbox-minimal input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Логотип текст замість порожнього <a> */
.logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Urgency bar — новий елемент */
.urgency-bar {
  background: linear-gradient(to right, #e53935, #ef5350);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.urgency-bar strong {
  font-size: 16px;
  background: #fff;
  color: #e53935;
  border-radius: 4px;
  padding: 1px 6px;
}

/* Trust badges */
.trust-section {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

/* Зірочки для відгуків */
.star-rating {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  margin-top: 6px;
}

.star-label {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 2px;
}

/* Hover-ефект на кнопці */
.btn-primary {
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 118, 134, 0.4);
  opacity: 0.95;
}
.btn-primary:active {
  transform: translateY(0);
}

/* Телефон — підсвітка поля при фокусі */
.field:focus {
  outline: none;
  border-color: #0e7686 !important;
  box-shadow: 0 0 0 3px rgba(14, 118, 134, 0.15);
}

/* Адаптивність для дуже маленьких екранів (<360px) */
@media (max-width: 360px) {
  body { font-size: 15px; }
  h2 { font-size: 19px; }
  .btn-primary { font-size: 15px; padding: 16px 20px; }
  .main-header { left: 0; width: 100%; }
  .main-menu { left: 0; width: 100%; }
}

/* Фікс для desktop — центрування хедера */
@media (min-width: 481px) {
  .main-header {
    left: calc(50% - 240px);
    width: 480px;
  }
  .main-menu {
    left: calc(50% - 240px);
    width: 480px;
  }
}

/* ================================================
   URGENCY BAR: подвійний рядок (таймер + залишки)
   ================================================ */
.urgency-bar {
  padding: 12px 16px;
}

.urgency-row {
  display: block;
  text-align: center;
}

/* ================================================
   LEGAL DISCLAIMER (аналог бренду)
   ================================================ */
.highlight-box {
  margin: 8px 0 0 0;
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.highlight-box p {
  margin: 0 0 8px 0;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* ================================================
   ТАЙМЕР у urgency bar — мигання останніх хвилин
   ================================================ */
@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

#discount-timer.urgent {
  animation: timerPulse 1s infinite;
  color: #fff176;
}


/* ================================================
   WHATSAPP-STYLE ВІДГУКИ
   ================================================ */
.reviews-sub {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: -8px;
}

.wtsp_item {
    max-width: 100%;
    margin: 0 auto;
    background: #e5ddd5 url("../images/white-brush-stroke-texture-background_53876-132775.jpg") repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1.5px solid #d0d0d0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.wtsp_item .info {
    background: #075e54;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px 14px 0 0;
}

.wtsp_item .info > img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.wtsp_item .info .text > p {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.wtsp_item .info .text > small {
    font-size: 12px;
    color: #a8e6cf;
    display: block;
    margin-top: 2px;
}

.wtsp_item .date {
    text-align: center;
    padding: 10px 0 4px;
}

.wtsp_item .date > span {
    display: inline-block;
    background: rgba(225,245,254,0.85);
    color: #4a5568;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.wtsp_item .message_container {
    padding: 6px 10px 14px;
}

.wtsp_item .message {
    display: inline-block;
    max-width: 88%;
    min-width: 60px;
    padding: 7px 10px 5px;
    position: relative;
    font-size: 14px;
    line-height: 1.45;
    color: #212121;
    box-shadow: 0 1px 2px rgba(0,0,0,0.18);
    margin-bottom: 8px;
    clear: both;
}

.wtsp_item .message.client {
    background: #fff;
    border-radius: 0 8px 8px 8px;
    float: left;
}

.wtsp_item .message.client::before {
    content: "";
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 0; left: -6px;
}

.wtsp_item .message.author {
    background: #dcf8c6;
    border-radius: 8px 0 8px 8px;
    float: right;
}

.wtsp_item .message.author::before {
    content: "";
    width: 0; height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #dcf8c6 transparent transparent transparent;
    position: absolute;
    top: 0; right: -6px;
}

.wtsp_item .message > p {
    margin: 0 0 4px;
}

.wtsp_item .message > img {
    display: block;
    width: 100%;
    max-width: 240px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.wtsp_item .message .time {
    text-align: right;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* clearfix після message_container */
.wtsp_item .message_container::after {
    content: "";
    display: block;
    clear: both;
}

.reviews-total {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.reviews-total .star-rating {
    display: inline;
    font-size: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* ================================================
   FAQ СЕКЦІЯ
   ================================================ */
.faq-section {
    background: #f7f9fc;
}

.faq-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.faq-q {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 15px;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    position: relative;
}

.faq-q::after {
    content: "▾";
    position: absolute;
    right: 16px;
    font-size: 16px;
    color: #0e7686;
    transition: transform 0.25s;
}

.faq-item.open .faq-q::after {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 16px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    border-top: 1px solid #f0f4f8;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-a a {
    color: #0e7686;
    text-decoration: underline;
}
