/* ======== 0. ГЛОБАЛЬНІ НАЛАШТУВАННЯ ======== */

/* Підключення змінних */
:root {
	--color-primary: #4a90e2;
	--color-secondary: #50e3c2;
	--color-text: #333333;
	--color-text-light: #555555;
	--color-bg: #ffffff;
	--color-bg-alt: #f7f9fc;
	--color-white: #ffffff;
	--color-border: #e0e0e0;

	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Inter', sans-serif;

	--header-height: 7rem;
}

/* Скидання стилів */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-secondary);
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
}

body.no-scroll {
	overflow: hidden;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

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

ul {
	list-style: none;
}

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

/* Загальний контейнер */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Стилізація SVG логотипу */
.logo__svg {
	height: 3.2rem; /* 32px */
	width: auto;
}

/* ======== 1. ХЕДЕР (HEADER) ======== */
.header {
	background-color: var(--color-white);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	padding: 0 2rem;
	height: var(--header-height);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.header__logo {
	display: flex;
	align-items: center;
}

/* Навігація (Mobile-first) */
.nav {
	position: fixed;
	top: 0;
	left: -100%; /* Сховано за замовчуванням */
	width: 80%;
	max-width: 300px;
	height: 100vh;
	background-color: var(--color-white);
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	transition: left 0.4s ease-in-out;
	padding-top: calc(var(--header-height) + 2rem);
	z-index: 998;
}

.nav.nav--open {
	left: 0;
}

.nav__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.nav__link {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 500;
}

/* Кнопка "Бургер" */
.header__burger {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	z-index: 999;
	display: block; /* Завжди видно на мобілках */
}

.header__burger .icon-close {
	display: none;
}

.header__burger.icon--close .icon-menu {
	display: none;
}

.header__burger.icon--close .icon-close {
	display: block;
}

/* Адаптивність (Desktop) */
@media (min-width: 992px) {
	.nav {
		position: static;
		left: 0;
		width: auto;
		max-width: none;
		height: auto;
		background: none;
		box-shadow: none;
		transition: none;
		padding-top: 0;
	}

	.nav__list {
		flex-direction: row;
		gap: 3.5rem;
	}

	.nav__link {
		font-size: 1.7rem;
	}

	.header__burger {
		display: none; /* Ховаємо бургер на десктопі */
	}
}

/* ======== 2. ФУТЕР (FOOTER) ======== */
.footer {
	background-color: var(--color-bg-alt);
	color: var(--color-text-light);
	padding: 6rem 0 3rem;
	margin-top: 5rem; /* Компенсація за контентом */
	border-top: 1px solid var(--color-border);
}

.footer__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

.footer__col--logo .logo__svg {
	height: 3.6rem; /* Трохи більше в футері */
}

.footer__copyright {
	font-size: 1.4rem;
	margin-top: 1.5rem;
}

.footer__title {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

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

.footer__link {
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

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

.footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 1.5rem;
}

.footer__contact-item i {
	width: 18px;
	height: 18px;
	color: var(--color-primary);
	margin-top: 3px;
	flex-shrink: 0;
}

/* Адаптивність футера */
@media (min-width: 576px) {
	.footer__container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.footer__container {
		/* 4 колонки: Лого, Нав, Юр, Контакти */
		grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
		gap: 5rem;
	}
}

/* ======== 3. MAIN & BUTTONS ======== */
.main {
	/* Компенсація за фіксований хедер */
	padding-top: var(--header-height);
}

/* Глобальні стилі кнопок */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 1.2rem 2.8rem;
	font-family: var(--font-primary);
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 5rem; /* Округлі */
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.button--primary {
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-secondary)
	);
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.button--primary:hover {
	box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
	transform: translateY(-2px);
	color: var(--color-white);
}

.button--secondary {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.button--secondary:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

/* ======== 4. HERO SECTION ======== */
.hero {
	background-color: var(--color-bg-alt);
	padding: 6rem 0;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.hero__content {
	text-align: center;
}

.hero__title {
	font-size: 2rem;
	margin-bottom: 2rem;
	line-height: 1.2;
}

.hero__description {
	font-size: 1.8rem;
	color: var(--color-text-light);
	margin-bottom: 3.5rem;
	max-width: 55rem;
	margin-left: auto;
	margin-right: auto;
}

.hero__description strong {
	color: var(--color-primary);
	font-weight: 500;
}

.hero__note {
	font-size: 1.4rem;
	color: var(--color-text-light);
	margin-top: 2rem;
	font-style: italic;
}

.hero__visual {
	width: 100%;
	min-height: 300px;
}

.hero__canvas {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 450px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

/* Адаптивність (Desktop) */
@media (min-width: 992px) {
	.hero {
		padding: 8rem 0;
		min-height: calc(100vh - var(--header-height));
	}

	.hero__container {
		grid-template-columns: 1.1fr 0.9fr; /* Трохи більше тексту */
		gap: 6rem;
	}

	.hero__content {
		text-align: left;
	}

	.hero__title {
		font-size: 4.5rem;
	}

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

	.hero__visual {
		min-height: 450px;
	}
}

/* ... (Після стилів .hero) ... */

/* ======== 5. ЗАГАЛЬНІ СТИЛІ СЕКЦІЙ ======== */
.section-header {
	text-align: center;
	margin-bottom: 5rem;
}

.section-header__subtitle {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 500;
	font-family: var(--font-primary);
	color: var(--color-primary);
	background-color: rgba(74, 144, 226, 0.1);
	padding: 0.5rem 1.5rem;
	border-radius: 5rem;
	margin-bottom: 1rem;
}

.section-header__title {
	font-size: 3.2rem;
	margin-bottom: 1.5rem;
}

.section-header__description {
	font-size: 1.7rem;
	color: var(--color-text-light);
	max-width: 60rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.section-header__title {
		font-size: 4rem;
	}
}

/* ======== 6. QUICK START SECTION ======== */
.quick-start {
	padding: 6rem 0;
	background-color: var(
		--color-bg
	); /* Чергуємо фон: Hero був 'alt', цей - 'bg' */
}

.quick-start__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

/* Картка кроку */
.step-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 3rem;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.step-card__icon-wrapper {
	width: 6.4rem; /* 64px */
	height: 6.4rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 2rem;
	/* Градієнт для іконки */
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-secondary)
	);
}

.step-card__icon {
	color: var(--color-white);
	width: 32px;
	height: 32px;
}

.step-card__number {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-text-light);
	display: block;
	margin-bottom: 0.5rem;
}

.step-card__title {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.step-card__text {
	font-size: 1.5rem;
	color: var(--color-text-light);
	line-height: 1.7;
}

/* Загальний CTA */
.quick-start__cta {
	text-align: center;
	margin-top: 5rem;
}

/* Адаптивність (Tablet & Desktop) */
@media (min-width: 768px) {
	.quick-start {
		padding: 8rem 0;
	}

	.quick-start__grid {
		/* Еластична сітка: картки будуть мати ~30rem,
           але не більше 3 колонок (1fr) */
		grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	}
}

@media (min-width: 992px) {
	.quick-start__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ... (Після стилів .quick-start) ... */

/* Анімація появи */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ======== 7. TOOLS SECTION ======== */
.tools {
	padding: 6rem 0;
	background-color: var(--color-bg-alt); /* Чергуємо фон */
}

/* Навігація вкладок */
.tools__tabs-nav {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

.tools__tabs-list {
	display: flex;
	flex-wrap: wrap; /* Для мобільних */
	justify-content: center;
	gap: 1rem;
	background-color: var(--color-white);
	padding: 0.8rem;
	border-radius: 5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tools__tab-btn {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 1.5rem;
	padding: 1rem 2rem;
	border-radius: 5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	color: var(--color-text-light);
	border: none;
}

.tools__tab-btn:hover {
	background-color: var(--color-bg-alt);
}

.tools__tab-btn--active {
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-secondary)
	);
	color: var(--color-white);
	box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.tools__tab-btn--active:hover {
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-secondary)
	);
}

/* Контент вкладок */
.tools__content-area {
	position: relative;
	background-color: var(--color-white);
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.tools__content-item {
	display: none; /* Сховано за замовчуванням */
	opacity: 0;
}

.tools__content-item--active {
	display: block; /* Активна вкладка */
	opacity: 1;
	animation: fadeIn 0.5s ease;
}

.tools__item-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.tools__item-visual {
	order: 1; /* Зображення спочатку на мобілках */
}

.tools__item-details {
	order: 2;
}

.tools__item-img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	max-height: 300px;
}

.tools__item-title {
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
}

.tools__item-description {
	font-size: 1.6rem;
	color: var(--color-text-light);
	margin-bottom: 2.5rem;
}

.tools__item-features {
	list-style: none;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.tools__item-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.6rem;
	font-weight: 500;
}

.tools__item-features i {
	color: var(--color-secondary);
	width: 20px;
	height: 20px;
}

/* Адаптивність */
@media (min-width: 768px) {
	.tools {
		padding: 8rem 0;
	}

	.tools__tab-btn {
		font-size: 1.6rem;
		padding: 1.2rem 2.5rem;
	}

	.tools__content-area {
		padding: 5rem;
	}

	.tools__item-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.tools__item-visual {
		order: 2; /* Зображення справа на десктопі */
	}

	.tools__item-details {
		order: 1; /* Текст зліва */
	}

	.tools__item-img {
		max-height: none;
	}
}

/* ... (Після стилів .tools) ... */

/* ======== 8. EXAMPLES (ACCORDION) SECTION ======== */
.examples {
	padding: 6rem 0;
	background-color: var(--color-bg); /* Чергуємо фон */
}

.examples__container {
	max-width: 900px; /* Трохи вужчий контейнер для акордеону */
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.accordion__item {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	overflow: hidden; /* Важливо для max-height */
	transition: all 0.3s ease;
}

.accordion__item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 2.5rem;
	cursor: pointer;
	background-color: transparent;
	border: none;
	width: 100%;
}

.accordion__title {
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--font-secondary);
	color: var(--color-text);
	text-align: left;
	margin-right: 1.5rem;
}

.accordion__icon {
	color: var(--color-primary);
	width: 24px;
	height: 24px;
	transition: transform 0.4s ease;
	flex-shrink: 0;
}

/* Контент акордеону */
.accordion__content {
	max-height: 0; /* Сховано за замовчуванням */
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.accordion__text {
	font-size: 1.6rem;
	color: var(--color-text-light);
	line-height: 1.7;
	padding: 2.5rem;
}

.accordion__text strong {
	color: var(--color-primary);
	font-weight: 500;
}

/* Стан "Відкрито" */
.accordion__item--open .accordion__content {
	max-height: 500px; /* Достатньо велике значення */
	opacity: 1;
}

.accordion__item--open .accordion__icon {
	transform: rotate(180deg);
}

.accordion__item--open .accordion__header {
	/* Можна додати колір активному заголовку */
	border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.examples {
		padding: 8rem 0;
	}
	.accordion__title {
		font-size: 2rem;
	}
}

/* ... (Після стилів .examples) ... */

/* ======== 9. ABOUT SECTION ======== */
.about {
	padding: 6rem 0;
	background-color: var(--color-bg-alt); /* Чергуємо фон */
}

.about__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.about__visual {
	width: 100%;
}

.about__img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	max-height: 450px; /* Обмеження висоти */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__details {
	/* Тут нам не потрібен text-align: center, 
       тому використовуємо класи з .section-header окремо */
}

/* Перевикористовуємо .section-header__subtitle */
.about__details .section-header__subtitle {
	margin-bottom: 1.5rem;
}

/* Кастомний заголовок, щоб він не був центрований */
.about__title {
	font-size: 3.2rem;
	margin-bottom: 2rem;
	text-align: left;
}

.about__description {
	font-size: 1.7rem;
	color: var(--color-text-light);
	line-height: 1.7;
	margin-bottom: 3rem;
}

.about__features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	list-style: none;
	margin-bottom: 3rem;
}

.about__feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	font-size: 1.6rem;
	font-weight: 500;
}

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

.about__note {
	font-size: 1.4rem;
	color: var(--color-text-light);
	font-style: italic;
	border-left: 3px solid var(--color-border);
	padding-left: 1.5rem;
}

/* Адаптивність */
@media (min-width: 992px) {
	.about {
		padding: 8rem 0;
	}

	.about__container {
		grid-template-columns: 1fr 1fr;
		gap: 6rem;
	}

	.about__title {
		font-size: 4rem;
	}
}

/* ... (Після стилів .about) ... */

/* ======== 10. CONTACT SECTION ======== */
.contact {
	padding: 6rem 0;
	background-color: var(--color-bg); /* Чергуємо фон */
}

.contact__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5rem;
}

/* Кастомний заголовок, щоб він не був центрований */
.contact__title {
	text-align: left;
	font-size: 3.2rem;
}

.contact__description {
	font-size: 1.7rem;
	color: var(--color-text-light);
	line-height: 1.7;
	margin: 2rem 0 3rem;
}

.contact__details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	list-style: none;
}

.contact__detail-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.6rem;
	font-weight: 500;
}

.contact__detail-icon {
	width: 24px;
	height: 24px;
	color: var(--color-primary);
	flex-shrink: 0;
}

/* Форма */
.contact__form-wrapper {
	background-color: var(--color-white);
	padding: 3rem;
	border-radius: 12px;
	border: 1px solid var(--color-border);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.form__group {
	margin-bottom: 2rem;
}

.form__label {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.8rem;
	color: var(--color-text);
}

.form__input {
	width: 100%;
	padding: 1.4rem 1.8rem;
	font-size: 1.6rem;
	font-family: var(--font-secondary);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form__input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

/* Чекбокс */
.form__group--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 2.5rem;
}

.form__checkbox-input {
	width: 1.8rem;
	height: 1.8rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.form__checkbox-label {
	font-size: 1.4rem;
	color: var(--color-text-light);
	line-height: 1.5;
}

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

.form__checkbox-label a:hover {
	text-decoration: none;
}

/* Кнопка */
.form__button {
	width: 100%;
	margin-top: 2rem;
	padding: 1.5rem;
	font-size: 1.8rem;
}

/* Повідомлення про успіх */
.contact__message {
	display: none; /* Сховано за замовчуванням */
	text-align: center;
	padding: 4rem 2rem;
	border: 2px dashed var(--color-secondary);
	border-radius: 12px;
	background-color: var(--color-bg-alt);
	animation: fadeIn 0.5s ease;
}

.contact__message i {
	width: 48px;
	height: 48px;
	color: var(--color-secondary);
	margin-bottom: 1.5rem;
}

.contact__message h4 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

.contact__message p {
	font-size: 1.6rem;
	color: var(--color-text-light);
}

/* Адаптивність */
@media (min-width: 992px) {
	.contact {
		padding: 8rem 0;
	}

	.contact__container {
		grid-template-columns: 1fr 1.1fr; /* Трохи більше місця для форми */
		gap: 8rem;
		align-items: flex-start; /* Вирівнювання по верху */
	}

	.contact__title {
		font-size: 4rem;
	}

	.contact__form-wrapper {
		padding: 4rem;
	}
}

/* ... (Після стилів .contact) ... */

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

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

.cookie-popup__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-popup__text {
	font-size: 1.5rem;
	color: var(--color-text-light);
	text-align: center;
}

.cookie-popup__link {
	color: var(--color-primary);
	text-decoration: underline;
	font-weight: 500;
}

.cookie-popup__link:hover {
	text-decoration: none;
}

.cookie-popup__btn {
	/* Використовуємо стиль вторинної кнопки */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.5rem;
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 500;
	border-radius: 5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: var(--color-primary);
	color: var(--color-white);
	border: 2px solid var(--color-primary);
}

.cookie-popup__btn:hover {
	background-color: #3a7bc8; /* Трохи темніший primary */
	border-color: #3a7bc8;
}

/* Адаптивність */
@media (min-width: 768px) {
	.cookie-popup__container {
		flex-direction: row;
		justify-content: space-between;
	}

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

.pages {
	padding: 10rem 0;
	background-color: var(--color-bg);
	min-height: 60vh; /* Щоб сторінка не виглядала порожньою */
}

.pages .container {
	max-width: 800px; /* Вужчий, ніж стандартний */
}

.pages h1 {
	font-size: 1.8rem;
	font-family: var(--font-primary);
	color: var(--color-text);
	margin-bottom: 2.5rem;
	border-bottom: 2px solid var(--color-border);
	padding-bottom: 1.5rem;
}

.pages h2 {
	font-size: 1.5rem;
	font-family: var(--font-primary);
	color: var(--color-text);
	margin-top: 4rem;
	margin-bottom: 1.5rem;
}

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

.pages strong {
	color: var(--color-text);
	font-weight: 600;
}

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

.pages a:hover {
	text-decoration: none;
}

.pages ul {
	list-style: disc; /* Стандартний маркований список */
	margin-left: 2rem;
	margin-bottom: 2rem;
}

.pages li {
	font-size: 1.7rem;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-bottom: 1rem;
	padding-left: 0.5rem;
}
