/* ======== STAGE 0: GLOBAL STYLES ======== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Roboto:wght@400;500&display=swap');

/* CSS Variables (Color Palette & Fonts) */
:root {
	--primary-color: #007aff;
	--secondary-color: #00c49a;
	--text-dark: #222222;
	--text-light: #555555;
	--bg-light: #ffffff;
	--bg-dark: #1a1d24;
	--border-color: #eeeeee;
	--white: #ffffff;

	--font-heading: 'Inter', sans-serif;
	--font-body: 'Roboto', sans-serif;

	--transition-fast: all 0.3s ease;
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--bg-light);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography & Links */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition-fast);
}

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

ul {
	list-style: none;
}

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

/* Utility Classes */
.container {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

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

.logo:hover {
	color: var(--primary-color);
	opacity: 0.8;
}

.logo span {
	color: var(--text-dark);
}

.footer .logo span {
	color: var(--white);
}

/* ======== STAGE 1: HEADER ======== */

.header {
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.header__nav {
	display: none; /* Mobile-first: hidden by default */
}

.header__menu-link {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--text-light);
	font-weight: 500;
	font-family: var(--font-heading);
	transition: var(--transition-fast);
}

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

.header__menu-link--cta {
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50px;
}

.header__menu-link--cta:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

/* Mobile Burger */
.header__burger {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 101;
	color: var(--text-dark);
}

.header__burger .lucide-x {
	display: none;
}

/* Mobile Menu - Shown state */
.header__nav.header__nav--open {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	right: 0;
	width: 80%;
	max-width: 300px;
	height: 100vh;
	background-color: var(--bg-light);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	padding-top: 5rem;
	transform: translateX(0);
	transition: transform 0.3s ease-in-out;
}

.header__nav.header__nav--open .header__menu {
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.header__nav.header__nav--open .header__menu-item {
	width: 100%;
	text-align: center;
	margin: 0.5rem 0;
}

/* Mobile Menu - Hidden state */
.header__nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 80%;
	height: 100vh;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

.header__burger.header__burger--open .lucide-menu {
	display: none;
}

.header__burger.header__burger--open .lucide-x {
	display: block;
}

/* Desktop Styles */
@media (min-width: 992px) {
	.header__burger {
		display: none;
	}

	.header__nav {
		display: block;
		position: static;
		height: auto;
		width: auto;
		background: none;
		box-shadow: none;
		padding-top: 0;
		transform: none;
	}

	.header__menu {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
	}

	.header__menu-item {
		width: auto;
		margin: 0;
	}

	.header__menu-link--cta {
		padding: 0.5rem 1.25rem;
	}
}

/* ======== STAGE 2: FOOTER ======== */
.footer {
	background-color: var(--bg-dark);
	color: var(--white);
	padding: 4rem 0 0;
}

.footer__container {
	display: grid;
	grid-template-columns: 1fr; /* Mobile-first: 1 column */
	gap: 2.5rem;
}

.footer .logo {
	color: var(--primary-color);
}

.footer__description {
	color: #aab2c0;
	font-size: 0.9rem;
	margin-top: 1rem;
	max-width: 300px;
}

.footer__col-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 1rem;
}

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

.footer__link {
	color: #aab2c0;
	font-size: 0.9rem;
}

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

.footer__address {
	font-style: normal;
}

.footer__address p {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: #aab2c0;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

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

.footer__bottom {
	border-top: 1px solid #33394a;
	margin-top: 3rem;
	padding: 1.5rem 0;
}

.footer__bottom-container {
	text-align: center;
	font-size: 0.85rem;
	color: #aab2c0;
}

/* Footer Desktop Styles */
@media (min-width: 768px) {
	.footer__container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.footer__container {
		/* 2fr 1fr 1.5fr 1.5fr */
		grid-template-columns: 3fr 2fr 2fr 3fr;
	}
}

.btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 1rem;
	color: var(--white);
	background-color: var(--primary-color);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-align: center;
	transition: var(--transition-fast);
}

.btn:hover {
	background-color: var(--secondary-color);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.hero {
	position: relative;
	padding: 4rem 0;
	background-color: #f9faff; /* Світлий фон, щоб частинки було видно */
	overflow: hidden;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero__canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.5;
}

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

.hero__content {
	animation: fadeIn 1s ease-out;
}

.hero__title {
	font-size: 1.5rem; /* 36px */
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
}

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

.hero__image-wrapper {
	animation: fadeIn 1.2s ease-out;
}

.hero__image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 0 auto;
}

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

/* Hero Desktop Styles */
@media (min-width: 768px) {
	.hero {
		padding: 6rem 0;
	}

	.hero__title {
		font-size: 2.5rem; /* 48px */
	}
}

@media (min-width: 992px) {
	.hero__container {
		grid-template-columns: 1.2fr 1fr; /* 2 колонки */
		text-align: left;
	}

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

	.hero__image-wrapper {
		order: 1; /* Змінюємо порядок для десктопу (текст зліва) */
	}

	.hero__content {
		order: 2;
	}
}

/* ======== STAGE 3: ABOUT SECTION ======== */

.about {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

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

.about__tagline {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 0.5rem;
}

.about__title {
	font-size: 1.75rem; /* 28px */
	margin-bottom: 1rem;
}

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

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

.about__feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.about__feature-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(0, 122, 255, 0.1); /* Light primary */
	color: var(--primary-color);
}

.about__feature-icon .lucide {
	width: 20px;
	height: 20px;
}

.about__feature-title {
	font-size: 1.125rem; /* 18px */
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.about__feature-text {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.5;
}

/* About Desktop Styles */
@media (min-width: 768px) {
	.about {
		padding: 6rem 0;
	}

	.about__title {
		font-size: 2.25rem; /* 36px */
	}
}

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

/* ======== STAGE 3: FEATURES (TABS) SECTION ======== */

.features {
	padding: 4rem 0;
	background-color: #f9faff; /* Light bg */
}

.features__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.features__tagline {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 0.5rem;
}

.features__title {
	font-size: 1.75rem; /* 28px */
	margin-bottom: 1rem;
}

.features__description {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* Tabs Navigation */
.features__tabs-nav {
	display: flex;
	flex-direction: column; /* Mobile-first stack */
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.features__tab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-light);
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition-fast);
	width: 100%;
}

.features__tab-btn:hover {
	color: var(--primary-color);
	background-color: #f0f5ff;
}

.features__tab-btn--active {
	color: var(--primary-color);
	background-color: var(--bg-light);
	border-bottom: 2px solid var(--primary-color);
	box-shadow: 0 4px 10px rgba(0, 122, 255, 0.1);
}

.features__tab-btn .lucide {
	width: 20px;
	height: 20px;
}

/* Tabs Content */
.features__tab-panel {
	display: none; /* Hidden by default */
	background-color: var(--bg-light);
	border-radius: 8px;
	padding: 2rem;
	border: 1px solid var(--border-color);
}

.features__tab-panel--active {
	display: grid; /* Shown when active */
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	animation: fadeIn 0.5s ease;
}

.features__panel-title {
	font-size: 1.5rem; /* 24px */
	margin-bottom: 1rem;
}

.features__panel-content p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.features__panel-image img {
	width: 100%;
	border-radius: 8px;
}

/* Secondary button style */
.btn--secondary {
	background-color: var(--secondary-color);
}

.btn--secondary:hover {
	background-color: var(--primary-color);
	box-shadow: 0 5px 15px rgba(0, 196, 154, 0.3);
}

/* Features Desktop Styles */
@media (min-width: 768px) {
	.features {
		padding: 6rem 0;
	}

	.features__title {
		font-size: 2.25rem; /* 36px */
	}

	.features__tabs-nav {
		flex-direction: row; /* Horizontal on desktop */
		justify-content: center;
		border-bottom: 1px solid var(--border-color);
	}

	.features__tab-btn {
		border: none;
		background: none;
		border-radius: 0;
		padding: 1rem 1.5rem;
		border-bottom: 2px solid transparent;
		width: auto;
	}

	.features__tab-btn--active {
		box-shadow: none;
		background: none;
	}

	.features__tab-panel--active {
		grid-template-columns: 1fr 1fr;
		padding: 3rem;
	}

	.features__panel-image {
		order: 1; /* Image on the right */
	}
	.features__panel-content {
		order: 2; /* Content on the left */
	}

	/* Swap for second tab */
	#tab-2 .features__panel-image {
		order: 2;
	}
	#tab-2 .features__panel-content {
		order: 1;
	}
}

/* ======== STAGE 3: HOW IT WORKS SECTION ======== */

.how-it-works {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

.how-it-works__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.how-it-works__tagline {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 0.5rem;
}

.how-it-works__title {
	font-size: 1.75rem; /* 28px */
	margin-bottom: 1rem;
}

.how-it-works__description {
	color: var(--text-light);
	font-size: 1.1rem;
}

.how-it-works__steps {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка */
	gap: 1.5rem;
}

.how-it-works__step {
	background-color: #f9faff;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: var(--transition-fast);

	/* Анімація появи */
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease-out forwards;
}

/* Затримка анімації для карток */
.how-it-works__step:nth-child(2) {
	animation-delay: 0.2s;
}
.how-it-works__step:nth-child(3) {
	animation-delay: 0.4s;
}

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

.how-it-works__step:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 122, 255, 0.1);
}

.how-it-works__step-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white);
	margin: 0 auto 1rem;
}

.how-it-works__step-icon .lucide {
	width: 28px;
	height: 28px;
}

.how-it-works__step-number {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--secondary-color);
	display: block;
}

.how-it-works__step-title {
	font-size: 1.25rem; /* 20px */
	margin: 0.5rem 0;
}

.how-it-works__step-text {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* How It Works Desktop Styles */
@media (min-width: 768px) {
	.how-it-works {
		padding: 6rem 0;
	}

	.how-it-works__title {
		font-size: 2.25rem; /* 36px */
	}

	.how-it-works__steps {
		grid-template-columns: repeat(3, 1fr); /* 3 колонки */
		gap: 2rem;
	}
}

/* ======== STAGE 3: FAQ (ACCORDION) SECTION ======== */

.faq {
	padding: 4rem 0;
	background-color: #f9faff; /* Light bg */
}

.faq__container {
	max-width: 800px; /* Вужчий контейнер для кращої читабельності */
}

.faq__header {
	text-align: center;
	margin-bottom: 3rem;
}

.faq__tagline {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 0.5rem;
}

.faq__title {
	font-size: 1.75rem; /* 28px */
	margin-bottom: 1rem;
}

.faq__description {
	color: var(--text-light);
	font-size: 1.1rem;
}

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

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq__item {
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden; /* Важливо для анімації max-height */
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.25rem 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;

	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-dark);
}

.faq__icon {
	width: 20px;
	height: 20px;
	color: var(--primary-color);
	flex-shrink: 0;
	margin-left: 1rem;
	transition: transform 0.3s ease;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq__answer p {
	padding: 0 1.5rem 1.25rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* Active State */
.faq__item.faq__item--open .faq__question {
	color: var(--primary-color);
}

.faq__item.faq__item--open .faq__icon {
	transform: rotate(180deg);
}

.faq__item.faq__item--open .faq__answer {
	/* max-height буде встановлено через JS */
	padding-top: 0;
}

/* FAQ Desktop Styles */
@media (min-width: 768px) {
	.faq {
		padding: 6rem 0;
	}

	.faq__title {
		font-size: 2.25rem; /* 36px */
	}
}

/* ======== STAGE 4: CONTACT SECTION ======== */

.contact {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

.contact__container {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка */
	gap: 3rem;
}

.contact__title {
	font-size: 1.75rem; /* 28px */
	margin-bottom: 1rem;
}

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

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

.contact__detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

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

.contact__detail-item span {
	display: block;
	font-weight: 500;
	font-family: var(--font-heading);
	color: var(--text-dark);
}
.contact__detail-item p,
.contact__detail-item a {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Form Styles */
.contact__form-wrapper {
	background-color: #f9faff;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.form-input {
	width: 100%;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	transition: var(--transition-fast);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group--checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.form-checkbox {
	width: 1.15em;
	height: 1.15em;
	flex-shrink: 0;
	accent-color: var(--primary-color);
}

.form-checkbox-label {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.5;
}
.form-checkbox-label a {
	text-decoration: underline;
}

.contact__form-btn {
	width: 100%;
}

/* Success Message */
.contact__success-message {
	display: none; /* *** HIDDEN BY DEFAULT *** */
	text-align: center;
	padding: 2rem;
	border: 1px solid var(--secondary-color);
	border-radius: 8px;
	background-color: #f0fcf9;
	animation: fadeIn 0.5s ease;
}

.contact__success-icon {
	width: 48px;
	height: 48px;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.contact__success-title {
	font-size: 1.5rem;
	color: var(--text-dark);
}

/* Contact Desktop Styles */
@media (min-width: 992px) {
	.contact {
		padding: 6rem 0;
	}
	.contact__container {
		grid-template-columns: 1fr 1fr; /* 2 колонки */
		gap: 4rem;
	}

	.contact__title {
		font-size: 2.25rem; /* 36px */
	}

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

/* ======== STAGE 5: COOKIE POPUP ======== */

.cookie-popup {
	display: none; /* *** HIDDEN BY DEFAULT *** */
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--bg-dark);
	color: var(--white);
	padding: 1.5rem;
	z-index: 1000;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);

	/* Show animation */
	animation: slideUp 0.5s ease-out;
}

/* Показати попап, якщо JS додасть цей клас */
.cookie-popup.cookie-popup--show {
	display: block;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.cookie-popup__content {
	display: flex;
	flex-direction: column; /* Mobile stack */
	align-items: center;
	gap: 1rem;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.cookie-popup__text {
	font-size: 0.9rem;
	color: #e0e0e0;
	text-align: center;
}

.cookie-popup__link {
	color: var(--white);
	text-decoration: underline;
}

.cookie-popup__link:hover {
	color: var(--secondary-color);
}

.cookie-popup__btn {
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition-fast);
	flex-shrink: 0;
}

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

/* Cookie Popup Desktop Styles */
@media (min-width: 768px) {
	.cookie-popup__content {
		flex-direction: row; /* Horizontal layout */
		justify-content: space-between;
	}

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

.pages {
	padding: 3rem 0;
}

.pages .container {
	max-width: 800px; /* Вузький контейнер для кращої читабельності */
}

.pages h1 {
	font-size: 1.5rem; /* 32px */
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--border-color);
	padding-bottom: 1rem;
}

.pages h2 {
	font-size: 1.5rem; /* 24px */
	color: var(--text-dark);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

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

.pages ul {
	list-style: disc; /* Стандартні маркери списку */
	margin-left: 20px;
	padding-left: 1rem;
	margin-bottom: 1rem;
}

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

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

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

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