/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@500;600;700&display=swap');

/* ==================== VARIABLES ==================== */
:root {
	/* Colors */
	--primary-color: #0a2540;
	--secondary-color: #00c49a;
	--text-color: #333333;
	--text-light: #6c757d;
	--background-color: #f8f9fa;
	--white: #ffffff;
	--border-color: #e0e0e0;

	/* Typography */
	--font-family-body: 'Lato', sans-serif;
	--font-family-heading: 'Poppins', sans-serif;
	--font-size-base: 16px;
	--font-size-h1: 2.5rem;
	--font-size-h2: 2rem;
	--font-size-h3: 1.25rem;
	--font-size-small: 0.875rem;

	/* Spacing */
	--header-height: 4.5rem;
	--container-width: 1140px;
	--container-padding: 1rem;
}

/* ==================== BASE RESET ==================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: var(--font-size-base);
}

body {
	font-family: var(--font-family-body);
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fix for body when nav is open */
body.nav-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
	color: var(--primary-color);
	font-weight: 600;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--secondary-color);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

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

/* ==================== UTILITY CLASSES ==================== */
.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.main {
	padding-top: var(--header-height); /* Offset for fixed header */
}

/* ==================== HEADER & NAV ==================== */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	z-index: 100;
}

.header__inner {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-family-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--primary-color);
}

.header__logo:hover {
	color: var(--primary-color);
}

.header__logo svg {
	transition: transform 0.3s ease;
}

.header__logo:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav__link {
	font-family: var(--font-family-heading);
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	padding: 0.5rem 0;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--secondary-color);
	transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
	width: 100%;
}

.nav__link--button {
	background-color: var(--secondary-color);
	color: var(--white);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav__link--button:hover {
	background-color: #00a884;
	color: var(--white);
	transform: translateY(-2px);
}

.nav__link--button::after {
	display: none; /* No underline for button */
}

.header__burger,
.nav__close {
	display: none;
	cursor: pointer;
	color: var(--primary-color);
}

/* ==================== FOOTER ==================== */
.footer {
	background-color: var(--primary-color);
	color: #e0e0e0;
	padding: 4rem 0 2rem 0;
	margin-top: 4rem; /* Space before footer */
}

.footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer__column--logo .footer__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-family-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer__logo:hover {
	color: var(--white);
}

.footer__description {
	font-size: var(--font-size-small);
	line-height: 1.5;
	max-width: 300px;
}

.footer__title {
	font-family: var(--font-family-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer__link {
	color: #e0e0e0;
	font-size: var(--font-size-small);
}

.footer__link:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer__list--contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: var(--font-size-small);
	color: #e0e0e0;
}

.footer__list--contact i {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	color: var(--secondary-color);
}

.footer__copy {
	text-align: center;
	font-size: var(--font-size-small);
	color: var(--text-light);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	margin-top: 1rem;
}

/* ==================== MOBILE & TABLET STYLES ==================== */
@media (max-width: 992px) {
	.footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--font-size-h1: 2rem;
		--font-size-h2: 1.5rem;
		--font-size-h3: 1.1rem;
	}

	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background-color: var(--white);
		box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
		padding: 4rem 2rem 2rem;
		transition: right 0.4s ease-in-out;
		z-index: 101;
	}

	.header__nav.nav-menu--active {
		right: 0;
	}

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}

	.nav__link {
		font-size: 1.1rem;
	}

	.nav__close {
		display: block;
		position: absolute;
		top: 1.5rem;
		right: 1.5rem;
		font-size: 1.5rem;
	}

	.header__burger {
		display: block;
		font-size: 1.5rem;
	}

	.footer__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/* ==================== HERO SECTION ==================== */
.hero {
	padding: 4rem 0;
	background-color: var(--white); /* Трохи інший фон для виділення */
	overflow: hidden; /* Важливо для анімацій */
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	align-items: center;
	gap: 2rem;
}

.hero__content {
	text-align: center; /* Центруємо на мобільних */
}

.hero__title {
	font-size: var(--font-size-h1);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.hero__description {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero__buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap; /* Дозволяє кнопкам переноситись */
}

.hero__button {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	font-family: var(--font-family-heading);
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.hero__button--primary {
	background-color: var(--secondary-color);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(0, 196, 154, 0.3);
}

.hero__button--primary:hover {
	background-color: #00a884;
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 196, 154, 0.4);
}

.hero__button--secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--border-color);
}

.hero__button--secondary:hover {
	background-color: var(--border-color);
	color: var(--primary-color);
	transform: translateY(-3px);
}

.hero__image-wrapper {
	position: relative;
	text-align: center; /* Центруємо плейсхолдер */
}

.hero__image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	position: relative;
	z-index: 5;
}

/* Декоративні елементи */
.hero__deco {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}

.hero__deco--1 {
	width: 100px;
	height: 100px;
	background-color: rgba(0, 196, 154, 0.1);
	top: -20px;
	left: -20px;
}

.hero__deco--2 {
	width: 60px;
	height: 60px;
	background-color: rgba(10, 37, 64, 0.1);
	bottom: -10px;
	right: -10px;
}

/* ==================== HERO MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.hero {
		padding: 5rem 0;
	}

	.hero__inner {
		grid-template-columns: 1fr 1fr; /* 2 колонки на десктопі */
		gap: 3rem;
	}

	.hero__content {
		text-align: left; /* Вирівнюємо по лівому краю */
	}

	.hero__description {
		margin-left: 0;
		margin-right: 0;
	}

	.hero__buttons {
		justify-content: flex-start;
	}
}

/* ==================== ABOUT SECTION ==================== */
.about {
	padding: 4rem 0;
	background-color: var(--background-color);
}

.about__inner {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	align-items: center;
	gap: 2.5rem;
}

.about__image-wrapper {
	text-align: center;
}

.about__image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.about__title {
	font-size: var(--font-size-h2);
	line-height: 1.3;
	margin-bottom: 1rem;
}

.about__description {
	font-size: 1.05rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.about__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.about__list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.about__list-item i {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	color: var(--secondary-color);
	margin-top: 2px;
}

.about__list-item span {
	font-size: 1rem;
	line-height: 1.5;
}

/* ==================== ABOUT MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.about {
		padding: 5rem 0;
	}

	.about__inner {
		grid-template-columns: 1fr 1fr; /* 2 колонки */
		gap: 4rem;
	}
}

/* ==================== SECTION HEADER (Reusable) ==================== */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.section-header__subtitle {
	display: inline-block;
	font-family: var(--font-family-heading);
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	font-size: var(--font-size-small);
	letter-spacing: 0.5px;
}

.section-header__title {
	font-size: var(--font-size-h2);
	line-height: 1.3;
}

/* ==================== SERVICES SECTION ==================== */
.services {
	padding: 4rem 0;
	background-color: var(--white); /* White background */
}

.services__grid {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	gap: 1.5rem;
}

.service-card {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(0, 196, 154, 0.1);
	margin-bottom: 1.5rem;
}

.service-card__icon i {
	width: 30px;
	height: 30px;
	color: var(--secondary-color);
}

.service-card__title {
	font-size: var(--font-size-h3);
	margin-bottom: 0.75rem;
	color: var(--primary-color);
}

.service-card__description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* ==================== SERVICES MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.services {
		padding: 5rem 0;
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
	}
}

@media (min-width: 992px) {
	.services__grid {
		grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопі */
	}
}

/* ==================== CASES (CTA) SECTION ==================== */
.cases {
	padding: 4rem 0;
	background-color: var(--background-color); /* Light background */
}

.cases__cta-block {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #00a884 100%);
	border-radius: 16px;
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	gap: 2rem;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 196, 154, 0.25);
}

.cases__cta-title {
	font-size: var(--font-size-h2);
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.cases__cta-text {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.cases__cta-action {
	text-align: center; /* Центруємо кнопку на мобільних */
}

.cases__cta-button {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	font-family: var(--font-family-heading);
	font-weight: 600;
	font-size: 1rem;
	color: var(--secondary-color);
	background-color: var(--white);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cases__cta-button:hover {
	color: var(--primary-color);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==================== CASES MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.cases {
		padding: 5rem 0;
	}

	.cases__cta-block {
		padding: 4rem;
		grid-template-columns: 3fr 1fr; /* 2 колонки: текст зліва, кнопка справа */
		gap: 3rem;
	}

	.cases__cta-action {
		text-align: right; /* Кнопка праворуч */
	}
}

/* ==================== BLOG SECTION ==================== */
.blog {
	padding: 4rem 0;
	background-color: var(--background-color);
}

.blog__grid {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	gap: 2rem;
}

.blog-card {
	background-color: var(--white);
	border-radius: 12px;
	overflow: hidden; /* Обрізаємо зображення по кутах */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
}

.blog-card__image-wrapper {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
	transform: scale(1.05);
}

.blog-card__category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background-color: var(--secondary-color);
	color: var(--white);
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	font-size: var(--font-size-small);
	font-weight: 600;
}

.blog-card__content {
	padding: 1.5rem;
	flex-grow: 1; /* Дозволяє карткам бути однакової висоти */
	display: flex;
	flex-direction: column;
}

.blog-card__title {
	font-size: 1.15rem; /* Зменшено для картки */
	margin-bottom: 0.75rem;
	color: var(--primary-color);
	line-height: 1.4;
	/* Обмеження тексту у 2 рядки */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: calc(1.15rem * 1.4 * 2); /* Висота для 2 рядків */
}

.blog-card__excerpt {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	/* Обмеження тексту у 3 рядки */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: var(--secondary-color);
	font-weight: 600;
	font-family: var(--font-family-heading);
}

.blog-card__link:hover {
	color: var(--primary-color);
}

.blog-card__link-icon {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.blog-card__link:hover .blog-card__link-icon {
	transform: translateX(4px);
}

/* ==================== BLOG MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.blog {
		padding: 5rem 0;
	}

	.blog__grid {
		grid-template-columns: repeat(2, 1fr); /* 2 колонки */
	}
}

@media (min-width: 992px) {
	.blog__grid {
		grid-template-columns: repeat(3, 1fr); /* 3 колонки */
	}
}

/* ==================== CONTACT SECTION ==================== */
.contact {
	padding: 4rem 0;
	background-color: var(--white);
}

.contact__inner {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	gap: 3rem;
}

.contact__info-title {
	font-size: var(--font-size-h3);
	margin-bottom: 1rem;
}

.contact__info-text {
	color: var(--text-light);
	margin-bottom: 2rem;
}

.contact__info-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact__info-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1rem;
	color: var(--text-color);
}

.contact__info-list li i {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--secondary-color);
	margin-top: 3px;
}

/* Form Styles */
.contact__form {
	width: 100%;
}

.form__group {
	position: relative;
	margin-bottom: 1.75rem;
}

.form__input {
	width: 100%;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background-color: var(--white);
	transition: border-color 0.3s ease;
	color: var(--text-color);
	font-family: var(--font-family-body);
}

/* Floating Label Effect */
.form__label {
	position: absolute;
	top: 0.85rem;
	left: 1rem;
	font-size: 1rem;
	color: var(--text-light);
	background-color: var(--white);
	padding: 0 0.25rem;
	transition: all 0.3s ease;
	pointer-events: none;
}

.form__input:focus,
.form__input:not(:placeholder-shown) {
	border-color: var(--secondary-color);
	outline: none;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
	top: -0.7rem;
	left: 0.75rem;
	font-size: var(--font-size-small);
	color: var(--secondary-color);
}

/* Checkbox */
.form__group--checkbox {
	margin-bottom: 1.75rem;
}

.form__checkbox-input {
	display: none; /* Ховаємо оригінальний чекбокс */
}

.form__checkbox-label {
	display: inline-block;
	align-items: center;
	gap: 0.75rem;
	font-size: var(--font-size-small);
	color: var(--text-light);
	cursor: pointer;
}

.form__checkbox-label a {
	color: var(--secondary-color);
	text-decoration: underline;
}

.form__checkbox-label a:hover {
	color: var(--primary-color);
}

.form__checkbox-box {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, border-color 0.3s;
	flex-shrink: 0;
}

.form__checkbox-box i {
	width: 16px;
	height: 16px;
	color: var(--white);
	transform: scale(0);
	transition: transform 0.3s ease;
}

.form__checkbox-input:checked + .form__checkbox-label .form__checkbox-box {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.form__checkbox-input:checked + .form__checkbox-label .form__checkbox-box i {
	transform: scale(1);
}

.form__checkbox-input:focus + .form__checkbox-label .form__checkbox-box {
	outline: 2px solid var(--secondary-color);
	outline-offset: 2px;
}

/* Form Button */
.form__button {
	display: inline-block;
	width: 100%;
	padding: 0.9rem 1.75rem;
	border-radius: 50px;
	font-family: var(--font-family-heading);
	font-weight: 500;
	font-size: 1rem;
	background-color: var(--secondary-color);
	color: var(--white);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 196, 154, 0.3);
}

.form__button:hover {
	background-color: #00a884;
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 196, 154, 0.4);
}

/* Form Message */
.form__message {
	display: none; /* СХОВАНО ЗА ЗАМОВЧУВАННЯМ */
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 8px;
	background-color: #e6f9f5;
	border: 1px solid var(--secondary-color);
	color: #008a6e;
	font-size: 0.95rem;
	align-items: center;
	gap: 0.75rem;
}

.form__message i {
	width: 20px;
	height: 20px;
}

/* ==================== CONTACT MEDIA QUERIES ==================== */
@media (min-width: 768px) {
	.contact {
		padding: 5rem 0;
	}
}

@media (min-width: 992px) {
	.contact__inner {
		grid-template-columns: 1fr 1.25fr; /* 2 колонки */
		gap: 5rem;
	}
}

/* ==================== COOKIE POP-UP ==================== */
.cookie-popup {
	position: fixed;
	bottom: -100%; /* Сховано за замовчуванням */
	left: 0;
	width: 100%;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 1.5rem 0;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	z-index: 110; /* Вище за хедер */
	transition: bottom 0.5s ease-in-out;
}

/* Клас для показу */
.cookie-popup.cookie-popup--active {
	bottom: 0;
}

.cookie-popup__content {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	flex-direction: column; /* На мобільних */
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-popup__text {
	font-size: 0.9rem;
	line-height: 1.5;
	text-align: center;
}

.cookie-popup__text a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 600;
}

.cookie-popup__text a:hover {
	color: var(--white);
}

.cookie-popup__button {
	padding: 0.6rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--font-family-heading);
	color: var(--primary-color);
	background-color: var(--white);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	flex-shrink: 0; /* Щоб кнопка не стискалась */
}

.cookie-popup__button:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

/* ==================== COOKIE POP-UP MEDIA QUERIES ==================== */

@media (min-width: 768px) {
	.cookie-popup__content {
		flex-direction: row; /* Горизонтально на десктопі */
	}

	.cookie-popup__text {
		text-align: left;
	}
}

/* ==================== STATIC PAGES (PRIVACY, TERMS) ==================== */
.pages {
	padding: 6rem 0 4rem 0;
	background-color: var(--white);
	min-height: 60vh; /* Щоб сторінка не виглядала порожньою */
}

.pages .container {
	max-width: 800px; /* Вужчий контейнер для тексту */
}

.pages h1 {
	font-size: var(--font-size-h2);
	margin-bottom: 1.5rem;
}

.pages h2 {
	font-size: var(--font-size-h2);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.pages p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 1.25rem;
}

.pages ul {
	list-style: disc; /* Звичайні маркери списку */
	margin-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.pages li {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 0.75rem;
}

.pages strong {
	font-weight: 700;
	color: var(--primary-color);
}

.pages a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 600;
}

.pages a:hover {
	color: var(--primary-color);
	text-decoration: none;
}
