/* ============================================
   CHANZ-INSPIRED THEME - Modern Casino Design
   ============================================ */

/* ========== BRAND COLORS ========== */
:root {
	--brand-primary: #12A7AB;
	--brand-primary-dark: #0e878b;
	--brand-primary-light: #16c4c9;
	--brand-primary-rgba: rgba(18, 167, 171, 0.3);
	--brand-primary-rgba-light: rgba(18, 167, 171, 0.15);

	
	/* CHANZ Color Palette */
	--chanz-dark-blue: #0d1a2d;
	--chanz-dark-blue-2: #1a2b4f;
	--chanz-green: #12A7AB;
	--chanz-green-dark: #0e878b;
	--chanz-yellow: #ffd700;
	--chanz-yellow-light: #ffcc00;
	--chanz-white: #ffffff;
}

/* ========== RESET & BASE ========== */
*, html {
	font-family: 'Open Sans', sans-serif !important;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: linear-gradient(135deg, var(--chanz-dark-blue) 0%, var(--chanz-dark-blue-2) 100%) !important;
	color: var(--chanz-white);
	line-height: 1.6;
	min-height: 100vh;
	position: relative;
}

/* Добавляем органические формы на фоне, как на CHANZ */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(ellipse at 20% 30%, rgba(18, 167, 171, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 70%, rgba(18, 167, 171, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 40% 80%, rgba(18, 167, 171, 0.06) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

body > * {
	position: relative;
	z-index: 1;
}

/* ========== CONTAINER ========== */
.container {
	margin: 0 auto;
	max-width: 1320px;
	padding: 0 48px;
}

/* ========== HEADER ========== */
.header__sticky {
	display: block;
	background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 8px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header {
	border-bottom: 2px solid var(--brand-primary-rgba);
	background: linear-gradient(135deg, var(--chanz-dark-blue) 0%, var(--chanz-dark-blue-2) 100%) !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	position: relative;
	backdrop-filter: blur(10px);
}

.header__sticky-wrapper,
.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px 0;
	color: #fff;
	width: 100%;
	height: auto;
	transition: all 0.5s ease-in-out;
}

.header__sticky-wrapper {
	row-gap: 10px;
}

.header__wrapper {
	padding: 20px 0;
}

.header__logo {
	width: 100%;
	height: auto;
	max-width: 200px;
	max-height: 60px;
	margin: 0;
	transition: transform 0.5s ease-in-out;
	filter: none;
}

.header__logo:hover {
	transform: scale(1.02);
}

.header__menu-wrapper {
	display: flex;
    align-items: center;
    gap: 10px;
}

.header__wrapper.center .header__menu-wrapper {
	margin: 0 auto;
    justify-content: space-between;
}

.header__wrapper.right .header__menu-wrapper {
	margin-left: auto;
}

.header__wrapper.left .header__buttons {
	margin-left: auto;
}

#header_menu {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	list-style: none;
}

#header_menu li {
	padding: 12px 18px;
	position: relative;
	border-radius: 8px;
	transition: all 0.5s ease-in-out;
}

#header_menu li:hover {
	background: var(--brand-primary-rgba-light);
	transform: translateY(-1px);
}

#header_menu li,
#header_menu li .clickable-div,
#header_menu li a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.5s ease-in-out;
}

#header_menu li a:hover,
#header_menu li .clickable-div:hover {
	color: var(--brand-primary);
}

#header_menu .menu-item-has-children {
	position: relative;
}

#header_menu ul {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: linear-gradient(135deg, var(--chanz-dark-blue-2) 0%, var(--chanz-dark-blue) 100%);
	border: 2px solid var(--brand-primary);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	padding: 10px 0;
	margin-top: 8px;
	z-index: 1000;
	backdrop-filter: blur(10px);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#header_menu > .menu-item-has-children:hover > ul,
#header_menu > .menu-item-has-children > ul:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition-delay: 0s;
}

#header_menu > .menu-item-has-children > ul li {
	padding: 10px 20px;
	border-radius: 0;
}

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

.header__buttons a {
	padding: var(--header_btn_padding, 12px 24px);
	margin: var(--header_btn_margin, 0);
	border: var(--header_btn_border, none);
	border-radius: var(--header_btn_border_radius, 8px);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header__buttons a.header__btn-first {
	color: var(--header_btn_text_color_1, #000000);
	background: linear-gradient(135deg, var(--header_btn_bg_color_1, var(--chanz-yellow)) 0%, var(--header_btn_bg_color_1, var(--chanz-yellow-light)) 100%);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.header__buttons a.header__btn-second {
	color: var(--header_btn_text_color_2, #ffffff);
	background: linear-gradient(135deg, var(--header_btn_bg_color_2, var(--brand-primary)) 0%, var(--header_btn_bg_color_2, var(--brand-primary-dark)) 100%);
}

.header__buttons a.header__btn-first:hover {
	color: var(--header_btn_text_hover_color_1, #000000);
	background: linear-gradient(135deg, var(--header_btn_bg_hover_color_1, var(--chanz-yellow-light)) 0%, var(--header_btn_bg_hover_color_1, var(--chanz-yellow)) 100%);
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
	filter: brightness(1.05);
}

.header__buttons a.header__btn-second:hover {
	color: var(--header_btn_text_hover_color_2, #ffffff);
	background: linear-gradient(135deg, var(--header_btn_bg_hover_color_2, var(--brand-primary-dark)) 0%, var(--header_btn_bg_hover_color_2, var(--brand-primary)) 100%);
	transform: translateY(-1px);
	box-shadow: 0 3px 8px var(--brand-primary-rgba-dark);
}

/* ========== MOBILE MENU ========== */
.menu__btn-open,
.mobile__menu {
	display: none;
}

.menu__btn-open {
	grid-column: 3;
	align-items: center;
	justify-content: center;
	padding: 10px;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.5s ease-in-out;
}

.menu__btn-open:hover {
	background: rgba(61, 219, 147, 0.15);
}

.menu__btn-open img,
.menu__btn-close img {
	width: 50px;
	height: 50px;
	transition: transform 0.5s ease-in-out;
}

.menu__btn-open:hover img {
	transform: rotate(90deg);
}

.menu__btn-close {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 14px;
	cursor: pointer;
}

.mobile__menu {
	overflow: auto;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	position: fixed;
	top: 0;
	left: calc(100% + 100px);
	bottom: 0;
	background: rgba(13, 26, 45, 0.95);
	backdrop-filter: blur(10px);
	border-radius: unset;
	z-index: 1000;
	padding: 0;
	align-items: center;
	gap: 3px;
	width: 100%;
	transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile__menu.open {
	left: 0;
}

.mobile__menu-backdrop {
	position: sticky;
	right: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 90px;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.fixed__menu-all {
	background: linear-gradient(135deg, var(--chanz-dark-blue-2) 0%, var(--chanz-dark-blue) 100%);
	top: 0;
	flex-direction: column;
	width: calc(100% - 90px);
	max-height: unset;
	min-height: calc(100% + 0.5px);
	height: max-content;
	position: absolute;
	bottom: 56px;
	right: 0;
	display: flex;
	padding: 0 0 16px;
	align-items: flex-start;
	align-self: stretch;
	transition: all 0.5s ease-in-out;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
}

.fixed__menu-all ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: unset;
	width: 100%;
	margin: 0;
}

.fixed__menu-all ul li {
	width: 100%;
	border-bottom: 1px solid rgba(61, 219, 147, 0.2);
	padding: 20px;
	transition: all 0.5s ease-in-out;
}

.fixed__menu-all ul li:hover {
	background: var(--brand-primary-rgba-light);
	padding-left: 30px;
}

.fixed__menu-all ul ul li {
	padding-bottom: 0;
	border-bottom: unset;
}

.fixed__menu-all ul li a {
	padding: 10px 20px;
	color: #ffffff;
	font-weight: 500;
	font-size: 16px;
	line-height: 38px;
	display: block;
	width: 100%;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

.fixed__menu-all ul li.current-menu-item a,
.fixed__menu-all ul li a:hover {
	color: var(--brand-primary);
}

/* ========== MAIN CONTENT ========== */
#main__section {
	margin-bottom: 50px;
	padding: 40px 0;
}

#main__section .container {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	padding: 40px 48px;
	color: #000000;
}

/* Убеждаемся, что весь текст в контентных блоках черный */
#main__section .container {
	color: #000000;
}

#main__section .container h1,
#main__section .container h2,
#main__section .container h3,
#main__section .container h4,
#main__section .container h5,
#main__section .container h6,
#main__section .container h1 *,
#main__section .container h2 *,
#main__section .container h3 *,
#main__section .container h4 *,
#main__section .container h5 *,
#main__section .container h6 * {
	color: #000000 !important;
}

/* Стили для ссылок в стиле CHANZ */
#main__section .container a {
	color: var(--brand-primary) !important;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--brand-primary);
	text-decoration-thickness: 4px;
	text-underline-offset: 5px;
	transition: all 0.5s ease-in-out;
}

#main__section .container a:hover {
	color: var(--brand-primary-dark) !important;
	text-decoration-color: var(--brand-primary-dark);
}

.content__block {
	margin: 30px 0;
	color: #000000;
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
}

/* Все элементы внутри content__block черные */
.content__block {
	color: #000000;
}

.content__block *:not(a):not(.button):not(.review__btn) {
	color: #000000;
}

.content__block a {
	color: #0a6517 !important;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content__block img {
	margin: 0 0 1.5em;
	border-radius: 12px;
	transition: transform 0.5s ease-in-out;
}

.content__block img:hover {
	transform: scale(1.02);
}

.content__block p {
	margin-bottom: 20px;
	font-size: 18px;
	color: #000000 !important;
	line-height: 1.8;
	text-align: justify;
}

.content__block li,
.content__block span,
.content__block ul,
.content__block ol,
.content__block dd,
.content__block dt {
	font-size: 18px;
	color: #000000 !important;
	line-height: 1.8;
}

.review__main-textarea,
.review__summary {
	font-size: 18px;
	color: #000000 !important;
	line-height: 1.8;
}

.content__block a,
.content__block .clickable-div {
	color: var(--brand-primary) !important;
	text-decoration: underline;
	text-decoration-color: var(--brand-primary);
	text-decoration-thickness: 3px;
	text-underline-offset: 4px;
	transition: all 0.5s ease-in-out;
	font-weight: 600;
}

.content__block a:hover,
.content__block .clickable-div:hover {
	color: var(--brand-primary-dark) !important;
	text-decoration-color: var(--brand-primary-dark);
}

b, strong {
	font-weight: 700;
	color: #000000 !important;
}

ol, ul {
	padding-left: 20px;
	color: #000000;
}

/* Все списки внутри контентных блоков черные */
#main__section .container ol,
#main__section .container ul,
#main__section .container li {
	color: #000000 !important;
}

.content__block ol,
.content__block ul,
.content__block li {
	color: #000000 !important;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
	color: #000000 !important;
	font-weight: 900;
	letter-spacing: -1px;
	margin-bottom: 20px;
	text-shadow: none;
}

#main__section h1,
#main__section h2,
#main__section h3,
#main__section h4,
#main__section h5,
#main__section h6,
.content__block h1,
.content__block h2,
.content__block h3,
.content__block h4,
.content__block h5,
.content__block h6 {
	color: #000000 !important;
}

.default__h1, h1 {
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 16px;

}

#main__section .default__h1,
.content__block .default__h1 {
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: #000000;
	color: #000000 !important;
}

.default__h2, h2 {
	font-size: 38px;
	line-height: 1.3;
	margin-top: 3rem;
	margin-bottom: 16px;
}

.default__h3, h3 {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 30px;
}

.default__h4, h4 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 30px;
}

/* ========== BUTTONS ========== */
.button {
	background: linear-gradient(135deg, var(--chanz-yellow) 0%, var(--chanz-yellow-light) 100%);
	display: inline-block;
	text-align: center;
	padding: 14px 40px;
	border-radius: 12px;
	color: #000000;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.5s ease-in-out;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease-in-out;
	background-clip: padding-box;
}

.button:hover::before {
	left: 100%;
}

.button:hover {
	background: linear-gradient(135deg, var(--chanz-yellow-light) 0%, var(--chanz-yellow) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	color: #000000;
	filter: brightness(1.05);
}

.button.button__header:hover {
	background: linear-gradient(135deg, #ffcc00 0%, #ffd700 100%);
}

/* ========== TABLES ========== */
body #main__section table {
	display: table;
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(18, 167, 171, 0.2);
	border-spacing: 0;
	overflow-x: auto;
	margin-bottom: 30px;
	box-shadow: 0 4px 12px rgba(18, 167, 171, 0.1);
	border-collapse: collapse;
	background: #ffffff;
	overflow: hidden;
}

body #main__section tr {
	background-color: #ffffff;
	transition: background-color 0.2s ease-in-out;
}

body #main__section tr:hover {
	background-color: var(--brand-primary-rgba-light);
}

body #main__section tr:not(:last-child) td {
	border-bottom: 1px solid rgba(18, 167, 171, 0.15);
}

body #main__section tbody tr:last-child td {
	border-bottom: none;
}

body #main__section td,
body #main__section th {
	padding: 16px 20px;
	text-align: left;
	position: relative;
		width: auto;
	min-width: 150px;
	transition: background-color 0.2s ease-in-out;
	border: none;
	color: #000000 !important;
	font-size: 16px;
	line-height: 1.6;
	vertical-align: top;
}

body #main__section th {
	background: var(--brand-primary);
	font-weight: 700;
	text-align: left;
	color: #ffffff !important;
	text-transform: none;
	letter-spacing: 0;
	font-size: 18px;
	padding: 18px 20px;
	border-bottom: 2px solid var(--brand-primary-dark);
}

body #main__section td {
	background: #ffffff;
	color: #000000 !important;
}

/* Первая строка данных (заголовок таблицы) */
body #main__section tr:first-child td {
	background: var(--brand-primary);
	font-weight: 700;
	text-align: left;
	color: #ffffff !important;
	padding: 18px 20px;
	border-bottom: 2px solid var(--brand-primary-dark);
}

body #main__section td.has-text-align-center,
body #main__section th.has-text-align-center {
	text-align: center;
}

/* Ссылки в таблицах */
body #main__section table a,
body #main__section table .clickable-div {
	color: var(--brand-primary) !important;
	text-decoration: underline;
	text-decoration-color: var(--brand-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	font-weight: 600;
	transition: all 0.6s ease-in-out;
	position: relative;
	padding-right: 20px;
	display: inline-block;
}

body #main__section table a:hover,
body #main__section table .clickable-div:hover {
	color: var(--brand-primary-dark) !important;
	opacity: 0.8;
}

body #main__section table a::after,
body #main__section table .clickable-div::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url('../images/link-external.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(1200%) hue-rotate(150deg) brightness(95%) contrast(90%);
	margin-left: 6px;
}

/* ========== CUSTOM TABLE ========== */
.custom__table {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: calc(100% - 50px);
	margin: 30px auto;
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(18, 167, 171, 0.1);
	background: #ffffff;
	border: 1px solid rgba(18, 167, 171, 0.2);
	overflow: hidden;
}

.custom__table-header,
.custom__table-row {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	display: grid;
}

.custom__table-heading {
	text-align: left;
	background: var(--brand-primary);
	color: #ffffff !important;
	padding: 18px 20px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 0;
	text-transform: none;
	letter-spacing: 0;
	border-bottom: 2px solid var(--brand-primary-dark);
}

.custom__table-body {
	margin-bottom: 0;
	display: grid;
}

.custom__table-row {
	background: #ffffff;
	transition: background-color 0.2s ease-in-out;
	border-bottom: 1px solid rgba(18, 167, 171, 0.15);
}

.custom__table-row:not(:last-child) {
	border-bottom: 1px solid rgba(18, 167, 171, 0.15);
}

.custom__table-row:last-child {
	border-bottom: none;
}

.custom__table-row:nth-child(2n) {
	background: #ffffff;
}

.custom__table-row:hover {
	background: var(--brand-primary-rgba-light);
}

.custom__table-col,
.custom__table-heading {
	min-width: 200px;
}

.custom__table-col {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 16px 20px;
	margin: auto 0;
	line-height: 1.6;
	font-size: 16px;
	text-align: left;
	color: #000000 !important;
}

.custom__table-col:first-child {
	font-weight: 600;
}

.custom__table img {
	width: 100%;
		height: auto;
	max-width: 100px;
	max-height: 100px;
	margin: 0;
	border-radius: 8px;
	transition: transform 0.5s ease-in-out;
}

.custom__table img:hover {
	transform: scale(1.02);
}

.custom__table .custom__table-btn {
	background: linear-gradient(135deg, var(--btn-bg-color, var(--chanz-yellow)) 0%, var(--btn-bg-color, var(--chanz-yellow-light)) 100%);
	border-radius: 12px;
	color: #000000;
	text-decoration: none;
	padding: 12px 24px;
	margin: 0 auto;
	transition: all 0.5s ease-in-out;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.custom__table-row:hover .custom__table-btn {
	background: linear-gradient(135deg, var(--btn-bg-color, var(--chanz-yellow-light)) 0%, var(--btn-bg-color, var(--chanz-yellow)) 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
	filter: brightness(1.05);
}

.custom__table-row-num {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 3px 5px;
	font-weight: 600;
	color: var(--brand-primary);
}

.custom-col1 {
	padding-left: 25px;
	position: relative;
}

/* ========== FOOTER ========== */
footer {
	background: linear-gradient(135deg, var(--chanz-dark-blue) 0%, var(--chanz-dark-blue-2) 100%);
	padding: 60px 0 20px;
	background-color: var(--fotter-bg-color, var(--chanz-dark-blue));
	border-top: 2px solid var(--brand-primary-rgba);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	margin-top: 60px;
	position: relative;
}

/* Добавляем декоративные элементы в футере */
footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(ellipse at 50% 0%, rgba(18, 167, 171, 0.1) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

footer > * {
	position: relative;
	z-index: 1;
}

.footer__block {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.footer__block.footer_align_left {
	justify-content: flex-start;
}

.footer__block.footer_align_center {
	justify-content: center;
}

.footer__block.footer_align_right {
	justify-content: flex-end;
}

.footer__block.footer_align_full .footer__block-col {
	flex: 1;
}

.footer__block-col {
	padding-right: 20px;
	flex: 1;
	min-width: 200px;
}

.footer__general {
	padding-right: 48px;
}

.footer__logo {
	width: 100%;
	height: auto;
	max-width: 200px;
	max-height: 60px;
	margin-bottom: 20px;
	transition: transform 0.5s ease-in-out;
	filter: none;
}

.footer__logo:hover {
	transform: scale(1.02);
}

.footer__text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8) !important;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 24px;
}

.footer__menu-main {
	padding-left: 48px;
}

.footer__menu-title {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 20px;
	text-transform: capitalize;
}

.footer__menu li .clickable-div {
	font-size: 14px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

.footer__menu li .clickable-div:hover {
	color: var(--brand-primary);
	padding-left: 5px;
}

.footer__contacts-single {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px;
}

.footer__contacts-single img {
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(1200%) hue-rotate(150deg) brightness(95%) contrast(90%);
}

.footer__contacts-single-text,
.footer__contacts-single-text a {
	font-size: 14px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

.footer__contacts-single-text a:hover {
	color: var(--brand-primary) !important;
}

.footer__socials,
.socials__widget-wrapper {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.footer__socials a,
.socials__widget-wrapper a {
	padding: 12px;
	text-decoration: unset;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-primary-rgba-light);
	transition: all 0.5s ease-in-out;
	border: 2px solid transparent;
}

.footer__socials a:hover,
.socials__widget-wrapper a:hover {
	background: var(--brand-primary-rgba);
	border-color: var(--brand-primary);
	transform: translateY(-3px) rotate(5deg);
	box-shadow: 0 6px 16px var(--brand-primary-rgba);
}

.footer__socials img,
.socials__widget-wrapper img {
	width: 100%;
	height: auto;
	max-width: 30px;
	max-height: 30px;
			margin: 0;
}

.socials__widget-wrapper {
	margin-bottom: 1.5em;
}

/* ========== REVIEW ========== */
.custom__review-block {
	margin-bottom: 40px;
}

.review__wrapper {
	margin-top: 24px;
	border: 2px solid var(--brand-primary-rgba);
	padding: 30px;
	background: #ffffff;
	margin-bottom: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out;
}

.review__wrapper:hover {
	border-color: var(--brand-primary-rgba-dark);
	box-shadow: 0 6px 16px var(--brand-primary-rgba);
	transform: translateY(-3px);
}

.review__main-block {
	display: grid;
	grid-template-columns: 1fr 2fr;
    		margin-bottom: 20px;
	row-gap: 20px;
	gap: 30px;
		}

.review__general {
	display: flex;
	flex-direction: column;
			align-items: center;
	padding: 0 15px;
}

.review__info {
	padding: 0 15px;
}

.review__main-block .review__general img {
	max-width: 200px;
	width: auto;
	max-height: 80px;
	height: auto;
	margin: 0;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.review__rating {
	margin: 10px 0 0;
			text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #ffd700;
}

.review__btn {
	font-size: 16px;
	background: linear-gradient(135deg, var(--btn-bg-color, var(--chanz-yellow)) 0%, var(--btn-bg-color, var(--chanz-yellow-light)) 100%);
	border-radius: 12px;
	color: #000000;
	text-decoration: none;
	padding: 15px 24px;
	margin-top: 20px;
	width: 100%;
	max-width: 250px;
	text-align: center;
	transition: all 0.5s ease-in-out;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.review__btn:hover {
	background: linear-gradient(135deg, var(--btn-bg-color, var(--chanz-yellow-light)) 0%, var(--btn-bg-color, var(--chanz-yellow)) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	color: #000000;
	filter: brightness(1.05);
}

.review__info-textarea {
	margin: 0;
	font-weight: 500;
	color: #000000 !important;
	font-size: 16px;
	text-align: left;
	line-height: 1.6;
}

.review__info-outline {
	background: linear-gradient(135deg, var(--chanz-yellow) 0%, var(--chanz-yellow-light) 100%);
	width: auto;
	display: inline-block;
	padding: 15px 20px;
	color: #000000;
	font-weight: 700;
	border-radius: 8px;
	margin: 10px 0;
	font-size: 14px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.review__summary {
	color: #000000 !important;
	font-size: 18px;
	line-height: 1.8;
	margin-top: 20px;
}

.review__main-textarea {
	color: #000000 !important;
	font-size: 18px;
	line-height: 1.8;
	margin-top: 20px;
}

.review__pros-cons-block {
	display: flex;
	gap: 20px;
	width: 100%;
	margin: 30px auto 0;
}

.review__pros-wrapper,
.review__cons-wrapper {
	width: 100%;
	padding: 20px;
	border-radius: 12px;
	margin-top: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review__pros-wrapper {
	background: linear-gradient(135deg, var(--brand-primary-rgba-light) 0%, var(--brand-primary-rgba) 100%);
	border: 2px solid var(--brand-primary-rgba);
}

.review__cons-wrapper {
	background: linear-gradient(135deg, rgba(255, 77, 77, 0.2) 0%, rgba(200, 0, 0, 0.2) 100%);
	border: 2px solid rgba(255, 77, 77, 0.3);
}

.review__cons-title img,
.review__pros-title img {
	width: 30px;
	height: 30px;
	margin: 0 !important;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.review__cons-title,
.review__pros-title {
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 600;
	font-size: 22px;
	line-height: 2.1;
	margin-bottom: 15px;
}

.review__pros-title {
	color: var(--brand-primary);
	text-shadow: 0 1px 2px var(--brand-primary-rgba);
}

.review__cons-title {
	color: #ff4d4d;
	text-shadow: 0 1px 2px rgba(255, 77, 77, 0.2);
}

.review__pros-cons-block ul {
	padding-left: 50px;
}

.review__pros-cons-block ul li {
	font-size: 15px;
	line-height: 1.6;
	color: #000000 !important;
	margin-bottom: 8px;
}

.review__cons-item {
	color: #000000 !important;
}

/* ========== FAQ ========== */
.faq-accordion {
	max-width: 900px;
	margin: 40px auto;
}

.faq-item {
	border-bottom: 2px solid var(--brand-primary-rgba);
	padding: 15px 0;
	margin-bottom: 10px;
	border-radius: 8px;
	transition: all 0.5s ease-in-out;
	background: #ffffff;
	overflow: visible;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
	background: #f8f9fa;
	border-color: var(--brand-primary-rgba-dark);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
	font-size: 1.3em;
	margin: 0;
	padding: 15px 20px;
	background: transparent;
	transition: all 0.5s ease-in-out;
	color: #000000 !important;
	cursor: pointer;
	font-weight: 700;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5em;
	color: var(--brand-primary);
	transition: transform 0.5s ease-in-out;
}

.faq-item.active .faq-question::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
	background: var(--brand-primary-rgba-light);
	color: var(--brand-primary-dark) !important;
	padding-left: 25px;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease-in-out;
	padding: 0 20px;
	color: #000000 !important;
}

.faq-item.active .faq-answer {
	max-height: 5000px;
	padding: 15px 20px 20px;
	overflow: visible;
}

.faq-answer p {
	margin: 0;
	line-height: 1.8;
	color: #000000 !important;
}

/* ========== TEXT & IMAGE BLOCKS ========== */
.text__image-block {
	margin: 40px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.text__image-wrapper {
	display: flex;
	gap: 40px;
	padding: 40px;
	align-items: center;
}

.text__image-wrapper.text_image_right_image_position {
	flex-direction: row;
}

.text__image-wrapper.text_image_left_image_position {
	flex-direction: row-reverse;
}

.text__image-wrapper.text_image_top_image_position {
	flex-direction: column-reverse;
}

.text__image-wrapper.text_image_bottom_image_position {
	flex-direction: column;
}

.text_image_horizontal_center {
	justify-content: center;
}

.text_image_vertical_center {
	align-items: center;
}

.text_image_vertical_top {
	align-items: flex-start;
}

.text_image_vertical_bottom {
	align-items: flex-end;
}

.text__image-image {
	border-radius: 16px;
	overflow: hidden;
	width: auto;
	max-width: 100%;
	min-width: 30%;
	display: flex;
	align-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	transition: transform 0.5s ease-in-out;
}

.text__image-image:hover {
	transform: scale(1.02);
}

.text__image-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
}

/* ========== INTRO BANNER ========== */
.intro__banner-section {
	background: linear-gradient(135deg, var(--chanz-dark-blue) 0%, var(--chanz-dark-blue-2) 100%);
	position: relative;
	overflow: hidden;
	padding: 60px 0;
}

.intro__banner-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(ellipse at 10% 20%, rgba(18, 167, 171, 0.15) 0%, transparent 60%),
		radial-gradient(ellipse at 90% 80%, rgba(18, 167, 171, 0.12) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.intro__banner-section > * {
	position: relative;
	z-index: 1;
}

.intro__banner-left,
.intro__banner-right {
	width: 100%;
	flex: 1;
}

.intro__banner-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro__banner-left.width-25 {
	max-width: 25%;
}

.intro__banner-left.width-50 {
	max-width: 50%;
}

.intro__banner-left.width-75 {
	max-width: 75%;
}

.intro__banner-left.width-100 {
	max-width: 100%;
}

.intro__banner-right {
	display: flex;
	align-items: center;
	overflow: hidden;
	justify-content: center;
}

.intro__banner-right .intro__banner-image {
	max-height: 500px;
	max-width: 100%;
	width: auto;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.5s ease-in-out;
}

.intro__banner-right .intro__banner-image:hover {
	transform: scale(1.02);
}

.banner__desktop-image {
	display: block;
}

.intro__banner-right .banner__mobile-image {
			display: none;
	max-height: 300px;
	width: 100%;
	object-fit: cover;
	min-height: 200px;
	border-radius: 16px;
}

.intro__banner-heading {
	color: var(--chanz-white) !important;
	font-weight: 900;
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.intro__banner-text {
	color: var(--chanz-white) !important;
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.95;
}

.intro__banner-btn.button {
	width: fit-content;
	margin-top: 30px;
	background: linear-gradient(135deg, var(--chanz-yellow) 0%, var(--chanz-yellow-light) 100%);
	color: #000000;
	font-weight: 700;
	font-size: 18px;
	padding: 16px 48px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.intro__banner-btn.button:hover {
	background: linear-gradient(135deg, var(--chanz-yellow-light) 0%, var(--chanz-yellow) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	filter: brightness(1.05);
}

/* ========== BANNER MINI ========== */
.banner__mini {
	max-width: 900px;
	margin: 40px auto;
	padding: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
	border: 2px solid var(--brand-primary-rgba);
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out;
	position: relative;
	backdrop-filter: blur(10px);
}

.banner__mini::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 50% 50%, rgba(18, 167, 171, 0.05) 0%, transparent 70%);
	border-radius: 16px;
	pointer-events: none;
	z-index: 0;
}

.banner__mini > * {
	position: relative;
	z-index: 1;
}

.banner__mini:hover {
	border-color: var(--brand-primary-rgba-dark);
	box-shadow: 0 6px 16px rgba(18, 167, 171, 0.15);
	transform: translateY(-3px);
}

.banner__mini-wrapper {
	display: flex;
	align-items: center;
    justify-content: center;
	gap: 30px;
	position: relative;
}

.banner__mini-content {
	max-width: calc(100% - 300px);
	display: flex;
	gap: 15px;
	flex-direction: column;
}

.banner__mini img {
	width: auto;
	max-width: 180px;
    min-height: calc(100% + 20px);
    margin: 0;
    height: auto;
    position: absolute;
	border-radius: 12px;
}

.banner__mini-title {
	font-size: 28px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 10px;
}

.banner__mini-content.banner__mini-row {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
    padding: 0 20px;
	flex-wrap: wrap;
}

.banner__mini-content.banner__mini-column {
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.banner__mini-btn {
	padding: 12px 24px;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.5s ease-in-out;
	border-radius: 10px;
	margin: 0 auto;
	background: linear-gradient(135deg, var(--chanz-yellow) 0%, var(--chanz-yellow-light) 100%);
	color: #000000;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.banner__mini-btn:hover {
	background: linear-gradient(135deg, var(--chanz-yellow-light) 0%, var(--chanz-yellow) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	filter: brightness(1.05);
}

/* ========== CUSTOM SLOTS ========== */
	.custom__slots-wrapper {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
    	justify-content: center;
	gap: 25px;
	margin: 40px 0;
	}

	.custom__slots-single {
	max-width: 160px;
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
	transition: all 0.5s ease-in-out;
	}

.custom__slots-single:hover {
	transform: translateY(-4px);
}

	.custom__slots-single__content {
		position: relative;
		overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.5s ease-in-out;
	}

	.custom__slots-single__content::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		opacity: 0;
		pointer-events: none;
	transition: all 0.6s ease-in-out;
	background: linear-gradient(0deg, rgba(61, 219, 147, 0.9) 0%, rgba(10, 101, 23, 0.7) 100%);
	border-radius: 16px;
	}

	.custom__slots-img-wrapper {
	max-width: 160px;
	max-height: 160px;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	border-radius: 16px;
	overflow: hidden;
	}

	.custom__slots-img-wrapper img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: auto;
		margin: 0;
	transition: transform 0.6s ease-in-out;
	}

.custom__slots-single:hover .custom__slots-img-wrapper img {
	transform: scale(1.02);
}

	.custom__slots-btn-block {
		position: absolute;
	top: 0;
	left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	gap: 15px;
		z-index: 3;
	}

	.custom__slots-btn-block a {
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	text-decoration: none;
		opacity: 0;
	}

	.custom__slots-btn-block a img {
		margin: 0;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
	}

	.custom__slots-btn-block a.slot__btn-first {
		transform: translate(0, -220%);
	}

	.custom__slots-btn-block a.slot__btn-first img {
	width: 60px;
	height: 60px;
	transition: transform 0.5s ease-in-out;
	}

.custom__slots-btn-block a.slot__btn-first:hover img {
	transform: scale(1.1) rotate(5deg);
}

	.custom__slots-btn-block a.slot__btn-second {
		transform: translate(0, 220%);
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--chanz-yellow) 0%, var(--chanz-yellow-light) 100%);
	color: #000000;
	font-weight: 700;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.custom__slots-btn-block a.slot__btn-second:hover {
	background: linear-gradient(135deg, var(--chanz-yellow-light) 0%, var(--chanz-yellow) 100%);
	transform: translate(0, 0) scale(1.02);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
	filter: brightness(1.05);
}

	.custom__slots-single:hover .custom__slots-btn-block a.slot__btn-first,
	.custom__slots-single:hover .custom__slots-btn-block a.slot__btn-second {
		transform: translate(0, 0);
		opacity: 1;
	}

	.custom__slots-single:hover .custom__slots-single__content::after {
		opacity: 1;
	}

	.custom__slots-single__text {
		text-align: center;
	margin-top: 15px;
	}

	.custom__slots-single__title,
	.custom__slots-single__subtitle {
	transition: all 0.5s ease-in-out;
	}

	.custom__slots-single__title {
		font-weight: 600;
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 5px;
	}

	.custom__slots-single__subtitle {
	font-size: 13px;
        line-height: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.custom__slots-single:hover .custom__slots-single__title {
	color: #3ddb93;
	transform: scale(1.02);
}

/* ========== ACF TOC ========== */
.acf-toc {
	background: rgba(26, 43, 79, 0.5);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 30px;
	border: 2px solid var(--brand-primary-rgba);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.acf-toc ul {
	padding: 0;
	list-style: none;
}

.acf-toc ul li {
	margin-bottom: 10px;
	padding-left: 15px;
	position: relative;
}

.acf-toc ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--brand-primary);
	font-weight: 700;
}

.acf-toc ul li a,
.acf-toc ul li .clickable-div {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.5s ease-in-out;
	width: fit-content;
	display: inline-block;
}

.acf-toc ul li .clickable-div:hover,
.acf-toc ul li a:hover {
	text-decoration: underline;
	color: var(--brand-primary);
	transform: translateX(5px);
	text-decoration-color: var(--brand-primary);
}

/* ========== SOCIALS ========== */
.wp-social-link .clickable-div,
.wp-social-link a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 10px;
	background: var(--brand-primary-rgba-light);
	transition: all 0.5s ease-in-out;
}

.wp-social-link .clickable-div:hover,
.wp-social-link a:hover {
	background: var(--brand-primary-rgba);
	transform: translateY(-3px) rotate(5deg);
}

.wp-social-link img,
.wp-social-link svg {
	width: 30px;
	height: 30px;
	font-size: 30px;
}

.wp-social-link .clickable-div path {
	fill: var(--brand-primary);
	transition: fill 0.3s ease-in-out;
}

.wp-social-link .clickable-div:hover path {
	fill: var(--brand-primary-light);
}

/* ========== IMAGE ALIGNMENTS ========== */
.alignleft,
img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.alignright,
img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.aligncenter,
img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.alignnone,
.intro__banner-image,
img.alignnone {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding-top: 5px;
}

.wp-caption img {
	border: 0;
	padding: 0;
	margin: 0;
}

.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 12px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.7);
}

.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
}

blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
	border-left: 4px solid var(--brand-primary);
	padding-left: 15px;
	color: rgba(255, 255, 255, 0.8);
	font-style: italic;
}

blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
	border-right: 4px solid var(--brand-primary);
	padding-right: 15px;
	color: rgba(255, 255, 255, 0.8);
	font-style: italic;
}

/* ========== UTILITY CLASSES ========== */
.clickable-div {
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

.clickable-div:hover {
	opacity: 0.8;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
}

/* Fade in animation for scroll */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
	.container {
		max-width: 1140px;
		padding: 0 30px;
	}
	
	#main__section .container {
		padding: 30px;
	}
	
	.footer__general {
		padding-right: 30px;
	}
}

@media (max-width: 992px) {
	.container {
		max-width: 960px;
		padding: 0 24px;
	}
	
	#main__section .container {
		padding: 30px 24px;
	}
	
	.mobile__menu {
		display: flex;
	}
	
	#header_menu {
		display: none;
	}
	
	.menu__btn-open {
		padding: 10px;
		display: block;
	}
	
	.header__wrapper.left {
		justify-content: space-between;
	}
	
	.intro__banner-left.width-25 {
		max-width: 50%;
	}
	
	.custom__table img {
		max-width: 80px;
		max-height: 80px;
	}
	
	.custom__table-col {
		font-size: 16px;
		line-height: 1.5;
		padding: 12px;
	}
	
	.custom__table .custom__table-btn {
		padding: 10px 18px;
		font-size: 14px;
	}
	
	.review__main-block {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	
	.footer__menu-main {
		padding-left: 24px;
	}
}

@media (max-width: 840px) {
	.review__pros-cons-block {
		flex-direction: column;
		gap: 15px;
	}
	
	.banner__mini-content {
		max-width: 100%;
	}
	
	.banner__mini img {
		position: relative;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.container {
		max-width: 720px;
		padding: 0 20px;
	}
	
	#main__section .container {
		padding: 24px 20px;
		border-radius: 12px;
	}
	
	.header__sticky-wrapper {
		flex-direction: column;
	}
	
	.header__wrapper {
		justify-content: center;
		padding: 15px 0;
	}
	
	.header__wrapper .header__buttons {
		display: none;
	}
	
	.intro__banner-section .container {
		padding: 0;
		margin: 0;
		max-width: unset;
	}
	
	.intro__banner-left {
		align-items: center;
		text-align: center;
		padding: 0 24px;
	}
	
	.banner__desktop-image {
		display: none;
	}
	
	.intro__banner-right .banner__mobile-image {
		display: block;
	}
	
	.intro__banner-wrapper {
		flex-direction: column-reverse !important;
	}
	
	.header__wrapper.left .header__buttons {
		display: none;
	}
	
	.header__buttons {
		margin-left: 15px;
		margin-bottom: 20px;
	}
	
	.custom__table {
		max-width: unset;
	}
	
	.footer__block {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer__menu-main {
		padding-left: 0;
	}
	
	.text__image-wrapper.text_image_left_image_position,
	.text__image-wrapper.text_image_top_image_position {
		flex-direction: column-reverse;
	}
	
	.intro__banner-wrapper,
	.text__image-wrapper.text_image_bottom_image_position,
	.text__image-wrapper.text_image_right_image_position {
		flex-direction: column;
	}
	
	.intro__banner-left.width-25,
	.intro__banner-left.width-50 {
		max-width: 75%;
	}
	
	.reversed-layout .intro__banner-wrapper {
		flex-direction: column-reverse;
	}
	
	.text__image-wrapper {
		padding: 24px;
		gap: 24px;
	}
	
	h1, .default__h1 {
		font-size: 32px;
	}
	
	h2, .default__h2 {
		font-size: 28px;
	}
	
	h3, .default__h3 {
		font-size: 22px;
	}
	
	h4, .default__h4 {
		font-size: 19px;
	}
}

@media (max-width: 576px) {
	.container {
		max-width: 540px;
		padding: 0 16px;
	}
	
	#main__section .container {
		padding: 20px 16px;
		border-radius: 12px;
	}
	
	.footer__block,
	.review__main-block {
		grid-template-columns: 1fr;
	}
	
	.footer__general,
	.footer__menu-main {
		padding: 0;
	}
	
	.intro__banner-left {
		max-width: 100% !important;
	}
	
	.review__info {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	
	.review__info-outline {
		margin: 15px auto;
	}
	
	.custom__slots-wrapper {
		gap: 20px;
	}
	
	.custom__slots-single {
		max-width: 140px;
	}
	
	.custom__slots-img-wrapper {
		max-width: 140px;
		max-height: 140px;
	}
	
	.banner__mini {
		padding: 20px;
	}
	
	.banner__mini-title {
		font-size: 22px;
	}
	
	.faq-question {
		font-size: 1.1em;
		padding: 12px 15px;
	}
	
	.faq-answer {
		padding: 0 15px;
	}
	
	.faq-item.active .faq-answer {
		padding: 12px 15px 15px;
	}
	
	.button {
		padding: 12px 30px;
		font-size: 14px;
	}
	
	.intro__banner-btn.button {
		margin: 20px !important;
		padding: 14px 36px;
		font-size: 16px;
	}
	
	.intro__banner-heading {
		font-size: 28px !important;
	}
	
	.intro__banner-text {
		font-size: 15px !important;
	}
}

/* ========== PRINT STYLES ========== */
@media print {
	header,
	footer,
	.header__sticky,
	.mobile__menu {
		display: none;
	}
	
	body {
		background: #ffffff !important;
		color: #000000;
	}
	
	.content__block,
	.content__block p {
		color: #000000;
	}
}
