/* ЕТАП 0: ГЛОБАЛЬНІ СТИЛІ */

/* Змінні кольорів та шрифтів */
:root {
	--primary-color: #007bff;
	--primary-hover: #0056b3;
	--secondary-color: #00bfa5;
	--secondary-hover: #008f7a;
	--bg-color: #ffffff;
	--bg-light: #f8f9fa;
	--text-color: #212529;
	--text-light: #6c757d;
	--border-color: #e9ecef;
	--white: #ffffff;

	--font-primary: 'Roboto', sans-serif;
	--font-secondary: 'Exo 2', sans-serif;

	--header-height: 70px;
}

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

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

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

ul {
	list-style: none;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

/* Загальний контейнер */
.container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Загальні стилі кнопок */
.button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-secondary);
	font-weight: 600;
	font-size: 1rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease, transform 0.2s ease;
	text-align: center;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button--primary {
	background-color: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
}

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

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

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

/* Загальний логотип */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--text-color);
}

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

.logo svg {
	width: 32px;
	height: 32px;
	color: var(--primary-color);
}

/* ЕТАП 1: СТИЛІ ХЕДЕРА */
.header {
	width: 100%;
	height: var(--header-height);
	background-color: var(--bg-color);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.header__nav {
	display: none; /* Mobile-first: сховано */
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header__nav-link {
	padding: 0.5rem;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
}

.header__nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0.5rem;
	right: 0.5rem;
	height: 2px;
	background-color: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.header__nav-link:hover::after {
	transform: scaleX(1);
}

.header__nav-link.button {
	padding: 0.5rem 1rem; /* Менші паддінги для кнопки в хедері */
}
.header__nav-link.button:hover {
	transform: none;
	box-shadow: none;
}
.header__nav-link.button::after {
	display: none; /* Видаляємо підкреслення для кнопки */
}

/* Мобільне меню */
.header__burger,
.header__close {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-color);
	padding: 0.5rem;
}

.header__close {
	display: none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 102;
}

/* Стан мобільного меню (is-active) */
.header__nav.is-active {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-color);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 101;
}

.header__nav.is-active .header__nav-list {
	flex-direction: column;
	gap: 1.5rem;
}

.header__nav.is-active .header__nav-link {
	font-size: 1.5rem;
}

.header__nav.is-active + .header__burger {
	display: none;
}

.header__nav.is-active ~ .header__close {
	display: block;
	z-index: 102;
}

/* Адаптив (Desktop) */
@media (min-width: 992px) {
	.header__nav {
		display: block;
	}
	.header__burger,
	.header__close {
		display: none;
	}
}

/* ЕТАП 2: СТИЛІ ФУТЕРА */
.footer {
	background-color: var(--bg-light);
	color: var(--text-light);
	padding-top: 3rem;
	padding-bottom: 2rem;
	border-top: 1px solid var(--border-color);
}

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

.footer__column--logo {
	text-align: center; /* Центруємо лого на мобілках */
}

.footer__logo {
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

.footer__copyright {
	font-size: 0.875rem;
	margin-top: 1rem;
}

.footer__title {
	font-family: var(--font-secondary);
	font-size: 1.125rem;
	color: var(--text-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

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

.footer__link {
	color: var(--text-light);
	font-size: 0.95rem;
}

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

.footer__list--contacts {
	gap: 1rem;
}

.footer__contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

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

.footer__address {
	font-style: normal;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Адаптив (Tablet & Desktop) */
@media (min-width: 768px) {
	.footer__container {
		/* 2 колонки */
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
	.footer__column--logo {
		text-align: left;
	}
	.footer__logo {
		justify-content: flex-start;
	}
}

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

/* ЕТАП 3: СТИЛІ HERO-СЕКЦІЇ */

.hero {
	background-color: var(--bg-light);
	padding: 4rem 0;
	overflow: hidden; /* Для коректної роботи AOS */
}

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

.hero__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.hero__subtitle {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.hero__image-wrapper {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Адаптив (Small screens) */
@media (min-width: 576px) {
	.hero__actions {
		flex-direction: row;
	}
}

/* Адаптив (Tablet & Desktop) */
@media (min-width: 992px) {
	.hero {
		padding: 6rem 0;
	}

	.hero__container {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 3rem;
		text-align: left;
	}

	.hero__title {
		font-size: 2.5rem;
	}

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

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

/* ЕТАП 3: СТИЛІ СЕКЦІЇ "КУРСИ" */

.courses {
	padding: 4rem 0;
	background-color: var(--bg-color); /* Чергуємо фон */
}

.courses__title,
.courses__subtitle {
	text-align: center;
}

.courses__title {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

.courses__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2.5rem auto;
}

.courses__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.courses__card {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.courses__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
}

.courses__card-image-wrapper {
	width: 100%;
	height: 200px; /* Фіксована висота */
	overflow: hidden;
}

.courses__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.courses__card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	height: calc(100% - 200px); /* Розрахунок висоти контенту */
}

.courses__card-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.courses__card-description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1; /* Опис займає вільне місце */
}

.button--small {
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	align-self: flex-start; /* Кнопка притиснута до низу */
}

/* Адаптив (Tablet) */
@media (min-width: 768px) {
	.courses__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* Адаптив (Desktop) */
@media (min-width: 992px) {
	.courses {
		padding: 6rem 0;
	}

	.courses__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.courses__title {
		font-size: 2.75rem;
	}
}

/* ЕТАП 3: СТИЛІ СЕКЦІЇ "ПЕРЕВАГИ" */

.benefits {
	padding: 4rem 0;
	background-color: var(--bg-light); /* Чергуємо фон */
}

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

.benefits__image-wrapper {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.benefits__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefits__title {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

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

.benefits__accordion {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.benefits__accordion-item {
	background-color: var(--white);
	border-bottom: 1px solid var(--border-color);
}

.benefits__accordion-item:last-child {
	border-bottom: none;
}

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

.benefits__accordion-title {
	font-family: var(--font-secondary);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-color);
}

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

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

.benefits__accordion-text {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Стан "Активний" для акордеону */
.benefits__accordion-item.is-active .benefits__accordion-body {
	max-height: 200px; /* Встановіть достатню висоту */
	padding-bottom: 1.25rem;
}

.benefits__accordion-item.is-active .benefits__accordion-icon {
	transform: rotate(180deg);
}

/* Адаптив (Desktop) */
@media (min-width: 992px) {
	.benefits {
		padding: 6rem 0;
	}

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

	.benefits__title {
		font-size: 2.75rem;
	}
}

/* ЕТАП 3: СТИЛІ СЕКЦІЇ "ПРО НАС" */

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

.about__container {
	text-align: center;
}

.about__title {
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.about__highlight {
	color: var(--primary-color);
}

.about__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

.about__stats-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.about__stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 123, 255, 0.08);
}

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

.about__stat-number {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	line-height: 1.2;
}

.about__stat-label {
	font-size: 1rem;
	color: var(--text-light);
	font-weight: 500;
}

/* Адаптив (Tablet & Desktop) */
@media (min-width: 768px) {
	.about {
		padding: 6rem 0;
	}

	.about__title {
		font-size: 2.75rem;
	}

	.about__stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

/* ЕТАП 3: СТИЛІ СЕКЦІЇ "ВІДГУКИ" (SWIPER) */

.reviews {
	padding: 4rem 0;
	background-color: var(--bg-light); /* Чергуємо фон */
}

.reviews__container {
	position: relative;
	overflow: hidden;
}

.reviews__title,
.reviews__subtitle {
	text-align: center;
}

.reviews__title {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

.reviews__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2.5rem auto;
}

.reviews__slider {
	padding-bottom: 3rem; /* Місце для пагінації */
}

.swiper-slide {
	padding: 0.5rem; /* Додаємо невеликий відступ, щоб тінь картки не обрізалась */
	height: auto; /* Дозволяємо слайду мати авто-висоту */
}

.reviews__card {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	height: 100%; /* Картки займають всю висоту слайду */
}

.reviews__card-icon {
	width: 32px;
	height: 32px;
	color: var(--primary-color);
	opacity: 0.5;
	margin-bottom: 1rem;
}

.reviews__card-text {
	font-size: 1.05rem;
	color: var(--text-color);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 1.5rem;
	flex-grow: 1; /* Текст займає вільне місце */
}

.reviews__card-author {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem;
}

.reviews__author-name {
	display: block;
	font-weight: 600;
	font-family: var(--font-secondary);
	color: var(--text-color);
}

.reviews__author-course {
	display: block;
	font-size: 0.875rem;
	color: var(--text-light);
}

/* Стилізація пагінації та навігації Swiper */
.swiper-pagination-bullet {
	background-color: #ccc;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.swiper-button-prev,
.swiper-button-next {
	color: var(--primary-color);
	width: 44px !important;
	height: 44px !important;
	background-color: var(--white);
	border-radius: 50% !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 1.25rem;
	font-weight: 900;
}

.swiper-button-prev,
.swiper-button-next {
	display: none !important;
}

/* Адаптив (Desktop) */
@media (min-width: 992px) {
	.reviews {
		padding: 6rem 0;
	}

	.reviews__title {
		font-size: 2.75rem;
	}

	.reviews__slider {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.swiper-button-prev {
		left: 0 !important;
	}
	.swiper-button-next {
		right: 0 !important;
	}
}

/* ЕТАП 4: СТИЛІ СЕКЦІЇ КОНТАКТІВ */

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

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

.contact__title {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

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

.contact__note {
	font-size: 0.9rem;
	color: var(--text-light);
	font-style: italic;
}

.contact__form-wrapper {
	position: relative;
}

.contact__form {
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact__form-group {
	display: flex;
	flex-direction: column;
}

.contact__label {
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.contact__input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__input::placeholder {
	color: #adb5bd;
}

.contact__input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.contact__form-group--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.contact__checkbox {
	width: 1.15em;
	height: 1.15em;
	margin-top: 0.2em;
	flex-shrink: 0;
	cursor: pointer;
}

.contact__checkbox:checked {
	accent-color: var(--primary-color);
}

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

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

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

.contact__submit {
	width: 100%;
	margin-top: 0.5rem;
	font-size: 1.1rem;
}

/* Повідомлення про успіх */
.contact__success-message {
	display: none; /* Сховано за замовчуванням */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	color: var(--text-color);
	font-weight: 500;
	font-size: 1.1rem;
	z-index: 10;
}

.contact__success-message.is-visible {
	display: flex; /* Показуємо при відправці */
}

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

/* Адаптив (Desktop) */
@media (min-width: 992px) {
	.contact {
		padding: 6rem 0;
	}

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

	.contact__title {
		font-size: 2.75rem;
	}
}

/* ЕТАП 5.1: СТИЛІ COOKIE POP-UP */

.cookie-popup {
	position: fixed;
	bottom: -100%; /* Початково сховано */
	left: 0;
	width: 100%;
	background-color: var(--bg-color);
	padding: 1.5rem;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
	border-top: 1px solid var(--border-color);
	z-index: 2000;
	transition: bottom 0.5s ease-in-out;
}

.cookie-popup.is-visible {
	bottom: 0; /* Показати */
}

.cookie-popup__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	max-width: 1200px; /* Відповідає .container */
	margin: 0 auto;
	padding: 0 1rem;
}

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

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

/* Адаптив (Tablet & Desktop) */
@media (min-width: 768px) {
	.cookie-popup__content {
		flex-direction: row;
	}
	.cookie-popup__text {
		font-size: 0.95rem;
		text-align: left;
	}
	.cookie-popup__button {
		flex-shrink: 0;
	}
}

/* ЕТАП 5.2: СТИЛІ ДЛЯ СТОРІНОК ПОЛІТИК */

/* Ці стилі застосовуються до сторінок типу privacy.html, terms.html,
  за умови, що вони мають структуру:
  <main>
    <section class="pages">
      <div class="container">
        <h1>...</h1>
        <p>...</p>
        ...
      </div>
    </section>
  </main>
*/

.pages {
	padding: 3rem 0;
	background-color: var(--bg-color);
	min-height: calc(
		100vh - var(--header-height) - 200px
	); /* 200px - приблизна висота футера */
}

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

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

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

.pages p,
.pages li {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 1rem;
}

.pages p {
	color: var(--text-color); /* Основний текст робимо темнішим */
}

.pages ul {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.pages li {
	margin-bottom: 0.5rem;
}

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

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

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