/* ======== 0. GLOBAL STYLES ======== */

/* Шрифти */
:root {
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	/* Кольори */
	--primary-color: #0a4d68;
	--accent-color: #08ffc8;
	--dark-color: #1a1a1a;
	--light-color: #f7f9fb;
	--white-color: #ffffff;
	--text-color: #333;
	--text-light: #555;

	/* Інше */
	--header-height: 70px;
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--light-color);
}

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

ul {
	list-style: none;
}

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

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

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

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

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

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

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

.logo__icon {
	width: 32px; /* Розмір іконки лого */
	height: 32px;
}

.logo__text {
	transform: translateY(2px); /* Легке вирівнювання тексту */
}

.header__toggle {
	display: block;
	cursor: pointer;
	background: none;
	border: none;
	color: var(--dark-color);
}

/* Мобільне меню (mobile-first) */
@media screen and (max-width: 768px) {
	.header__nav {
		position: fixed;
		top: var(--header-height);
		right: -100%; /* Сховано за замовчуванням */
		width: 100%;
		height: calc(100vh - var(--header-height));
		background-color: var(--white-color);
		padding: 2rem;
		transition: right 0.4s ease;
		overflow-y: auto;
	}

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

/* Клас для відкриття меню */
.header.is-open .header__nav {
	right: 0;
}

.nav__link {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--dark-color);
	font-size: 1.1rem;
	padding: 0.5rem 0;
}

.nav__link--cta {
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 0.5rem 1.5rem;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.nav__link--cta:hover {
	background-color: var(--accent-color);
	color: var(--dark-color);
}

/* Desktop */
@media screen and (min-width: 769px) {
	.header__toggle {
		display: none;
	}

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

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

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

	.nav__link--cta {
		margin-left: 1rem;
	}
}

/* ======== 2. FOOTER ======== */
.footer {
	background-color: var(--dark-color);
	color: var(--light-color);
	padding: 4rem 0 2rem;
	margin-top: 4rem; /* Відступ від контенту */
}

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

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

.footer__description {
	margin-top: 1rem;
	max-width: 300px;
	color: var(--light-color);
	opacity: 0.8;
}

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

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

.footer__link {
	color: var(--light-color);
	opacity: 0.8;
}

.footer__link:hover {
	opacity: 1;
	color: var(--accent-color);
}

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

.footer__contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--light-color);
	opacity: 0.9;
}

.footer__contact-item i {
	color: var(--accent-color);
	width: 20px;
	height: 20px;
}

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

/* Desktop */
@media screen and (min-width: 576px) {
	/* 2 колонки */
	.footer__container {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ======== 3. HERO SECTION ======== */

/* Загальний контейнер для секцій */
.section {
	padding: 5rem 0;
}

.hero {
	background-color: var(--white-color);
	padding-top: calc(
		var(--header-height) + 4rem
	); /* Відступ від фіксованого хедера */
	padding-bottom: 5rem;
	overflow: hidden; /* Для декоративних елементів */
}

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

.hero__content {
	text-align: center;
}

.hero__subtitle {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--primary-color);
	margin-bottom: 1rem;
	background-color: rgba(10, 77, 104, 0.05);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
}

.hero__title {
	font-size: 2.5rem; /* Mobile-first розмір */
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.hero__description {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2.5rem;
	min-height: 50px; /* Резервуємо місце для анімації */
}

/* Стилізація базової кнопки */
.button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 0.9rem 1.75rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
}

.button:hover {
	background-color: var(--accent-color);
	color: var(--dark-color);
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(8, 255, 200, 0.3);
}

.button i {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.button:hover i {
	transform: translateX(4px);
}

.hero__image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__image {
	width: 100%;
	border-radius: var(--border-radius);
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Фон для зображення */
.hero__image-bg {
	position: absolute;
	width: 100%;
	height: auto;
	background-color: var(--accent-color);
	opacity: 0.5;
	border-radius: var(--border-radius);
	z-index: 1;
	transform: rotate(-8deg);
}

/* Декоративні іконки */
.hero__deco {
	position: absolute;
	display: none; /* Покажемо на desktop */
	z-index: 3;
	background-color: var(--white-color);
	color: var(--primary-color);
	padding: 0.75rem;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero__deco i {
	width: 24px;
	height: 24px;
}

.hero__deco--1 {
	top: 20%;
	left: 10%;
	animation: float 4s ease-in-out infinite;
}

.hero__deco--2 {
	bottom: 25%;
	right: 5%;
	animation: float 5s ease-in-out infinite 0.5s; /* З затримкою */
}

/* Анімація "плавання" */
@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0);
	}
}

/* Анімація для тексту (JS) */
.hero__description .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(10px) scale(0.9);
	animation: revealChar 0.1s forwards;
}

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

/* Адаптивність (Desktop) */
@media screen and (min-width: 769px) {
	.hero__container {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.hero__content {
		text-align: left;
	}

	.hero__title {
		font-size: 3.5rem;
	}

	.hero__description {
		margin-left: 0;
	}

	.hero__image {
		max-width: 450px;
	}

	.hero__deco {
		display: flex;
	}
}

/* ======== 4. COURSES SECTION ======== */

/* Загальні стилі для секцій (додамо сюди) */
.section {
	padding: 5rem 0;
}

.section__header {
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section__subtitle {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

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

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

/* Стилі сітки курсів */
.courses__grid {
	display: grid;
	grid-template-columns: 1fr; /* 1 колонка на мобільних */
	gap: 2rem;
}

/* Картка курсу */
.course-card {
	background-color: var(--white-color);
	border-radius: var(--border-radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.course-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
}

.course-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.course-card__content {
	padding: 1.75rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.course-card__tag {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--primary-color);
	background-color: rgba(10, 77, 104, 0.05);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-bottom: 1rem;
	align-self: flex-start; /* Щоб тег не розтягувався */
}

.course-card__title {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--dark-color);
}

.course-card__description {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	flex-grow: 1; /* Щоб кнопка завжди була внизу */
}

/* Вторинний стиль кнопки (для карток) */
.button--secondary {
	background-color: transparent;
	color: var(--primary-color);
	padding: 0; /* Скидаємо падінг, щоб виглядав як посилання */
	justify-content: flex-start; /* Вирівнювання по лівому краю */
}

.button--secondary:hover {
	background-color: transparent;
	color: var(--dark-color);
	transform: none;
	box-shadow: none;
}

.button--secondary i {
	transition: transform 0.3s ease;
}

.button--secondary:hover i {
	transform: translateX(5px);
}

/* Адаптивність (Desktop) */
@media screen and (min-width: 576px) {
	/* 2 колонки на планшетах */
	.courses__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ======== 5. ABOUT SECTION ======== */
.about {
	background-color: var(--white-color); /* Чергуємо фон секцій для контрасту */
}

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

.about__image-wrapper {
	position: relative;
	max-width: 450px;
	margin: 0 auto;
}

.about__image {
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Декоративний елемент */
.about__image-deco {
	position: absolute;
	bottom: 20px;
	right: -10px;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 1rem 1.25rem;
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 5px 15px rgba(10, 77, 104, 0.3);
	animation: float 3s ease-in-out infinite 1s; /* Анімація "плавання" */
}

@media screen and (min-width: 769px) {
	.about__image-deco {
		bottom: 20px;
		right: -25px;
	}
}

.about__deco-text {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.1rem;
}

.about__deco-text + i {
	width: 24px;
	height: 24px;
	color: var(--accent-color);
}

.about__content {
	text-align: left; /* Вже вирівняно на мобілках */
}

.about__content .section__description {
	margin-bottom: 2rem;
}

.about__features-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.about__feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.05rem;
	font-weight: 500;
}

.about__feature-item i {
	width: 22px;
	height: 22px;
	color: var(--accent-color);
	background-color: var(--primary-color);
	border-radius: 50%;
	padding: 3px;
}

/* Адаптивність (Desktop) */
@media screen and (min-width: 992px) {
	.about__container {
		grid-template-columns: 1fr 1fr; /* 2 колонки */
		gap: 5rem;
	}

	/* Міняємо порядок: зображення зліва, текст справа (як в HTML) */
	.about__image-wrapper {
		order: 1;
	}

	.about__content {
		order: 2;
	}
}

/* ======== 6. MENTORS SECTION ======== */
.mentors {
	background-color: var(--light-color); /* Знову світлий фон */
}

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

.mentor-card {
	background-color: var(--white-color);
	border-radius: var(--border-radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
}

.mentor-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
}

.mentor-card__image {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1.5rem;
	border: 4px solid var(--primary-color);
}

.mentor-card__name {
	font-size: 1.5rem;
	font-family: var(--font-heading);
	color: var(--dark-color);
	margin-bottom: 0.25rem;
}

.mentor-card__title {
	display: block;
	font-size: 1rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
}

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

/* Адаптивність (Tablet) */
@media screen and (min-width: 576px) {
	.mentors__grid {
		grid-template-columns: repeat(2, 1fr); /* 2 колонки */
	}
}

/* Адаптивність (Desktop) */
@media screen and (min-width: 992px) {
	.mentors__grid {
		grid-template-columns: repeat(4, 1fr); /* 4 колонки */
	}
}

/* ======== 7. FAQ SECTION ======== */
.faq {
	background-color: var(--white-color); /* Знову білий фон */
}

.faq__container {
	max-width: 800px;
	margin: 0 auto;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius);
	overflow: hidden; /* Щоб заокруглення працювало */
}

.faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__item:last-child {
	border-bottom: none;
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark-color);
	transition: var(--transition);
}

.faq__question:hover {
	background-color: var(--light-color);
	color: var(--primary-color);
}

.faq__icon {
	width: 24px;
	height: 24px;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

/* Стилі для контенту відповіді */
.faq__answer {
	/* Анімація через max-height */
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq__answer p {
	padding: 0 1.5rem 1.5rem; /* Падінг з'явиться тільки при відкритті */
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* Активний стан (коли відповідь відкрита) */
.faq__item.is-active .faq__question {
	background-color: var(--light-color);
	color: var(--primary-color);
}

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

/* JS буде додавати max-height */
.faq__item.is-active .faq__answer {
	/* max-height буде встановлено через JS */
}

/* ======== 8. CONTACT SECTION ======== */
.contact {
	background-color: var(--light-color); /* Світлий фон */
}

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

.contact__info .section__description {
	margin-bottom: 2.5rem;
}

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

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

.contact__detail-item i {
	width: 32px;
	height: 32px;
	color: var(--white-color);
	background-color: var(--primary-color);
	padding: 6px;
	border-radius: 50%;
}

.contact__detail-item h4 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--dark-color);
	margin-bottom: 0.25rem;
}

.contact__detail-item span {
	font-size: 1rem;
	color: var(--text-light);
}

/* Стилі форми */
.contact__form-wrapper {
	background-color: var(--white-color);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

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

.form__group {
	display: flex;
	flex-direction: column;
}

.form__label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--dark-color);
	font-family: var(--font-body);
}

.form__input {
	width: 100%;
	padding: 0.9rem 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-family: var(--font-body);
	transition: var(--transition);
}

.form__input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.1);
}

/* Чекбокс */
.form__group--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.form__checkbox-input {
	width: 1.25em; /* Збільшуємо розмір */
	height: 1.25em;
	margin-top: 0.2em; /* Вирівнюємо по тексту */
	accent-color: var(--primary-color);
}

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

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

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

.contact__submit {
	width: 100%;
	justify-content: center; /* Центруємо іконку і текст */
	padding: 1rem;
	font-size: 1.1rem;
}

/* Повідомлення про успіх */
.form__message {
	padding: 1rem;
	border-radius: var(--border-radius);
	text-align: center;
	font-weight: 500;
	display: none; /* Сховано за замовчуванням */
}

.form__message--success {
	background-color: rgba(8, 255, 200, 0.15); /* --accent-color з прозорістю */
	color: var(--primary-color);
	border: 1px solid var(--accent-color);
}

/* Адаптивність (Desktop) */
@media screen and (min-width: 992px) {
	.contact__container {
		grid-template-columns: 1fr 1fr; /* 2 колонки */
		gap: 5rem;
		align-items: flex-start; /* Вирівнюємо по верху */
	}
}

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

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

.cookie-popup__content {
	display: flex;
	flex-direction: column; /* На мобільних */
	align-items: center;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.cookie-popup__text {
	font-size: 0.95rem;
	line-height: 1.5;
}

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

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

.cookie-popup__button {
	padding: 0.6rem 1.5rem; /* Трохи менша кнопка */
	background-color: var(--accent-color);
	color: var(--dark-color);
	flex-shrink: 0; /* Щоб кнопка не стискалась */
}

.cookie-popup__button:hover {
	background-color: var(--white-color);
	box-shadow: none;
	transform: none;
}

/* Адаптивність (Desktop) */
@media screen and (min-width: 769px) {
	.cookie-popup__content {
		flex-direction: row; /* В ряд на десктопі */
		justify-content: space-between;
		text-align: left;
	}
}

/* ======== 10. STYLES FOR POLICY PAGES ======== */

.pages {
	padding-top: calc(
		var(--header-height) + 4rem
	); /* Відступ від фіксованого хедера */
	padding-bottom: 5rem;
	background-color: var(--white-color);
	min-height: 80vh; /* Щоб футер не прилипав, якщо контенту мало */
}

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

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

.pages h2 {
	font-size: 1.5rem;
	font-family: var(--font-heading);
	color: var(--dark-color);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

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

.pages ul {
	list-style: disc; /* Стандартні маркери списку */
	padding-left: 2rem; /* Відступ для маркерів */
	margin-bottom: 1.5rem;
}

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

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

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

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