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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
		'Cantarell', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fafafa;
}

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

a {
	text-decoration: none;
	color: inherit;
}

/* Header Styles */
.header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.header__logo-link {
	font-size: 24px;
	font-weight: 700;
	color: #2563eb;
	transition: color 0.3s ease;
}

.header__logo-link:hover {
	color: #1d4ed8;
}

.header__nav {
	display: flex;
}

.header__nav-list {
	display: flex;
	list-style: none;
	gap: 30px;
}

.header__nav-link {
	font-weight: 500;
	color: #64748b;
	transition: color 0.3s ease;
	position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
	color: #2563eb;
}

.header__nav-link--active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #2563eb;
}

.header__burger {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	gap: 4px;
}

.header__burger-line {
	width: 25px;
	height: 3px;
	background-color: #333;
	transition: transform 0.3s ease;
}

.header__burger--active .header__burger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.header__burger--active .header__burger-line:nth-child(2) {
	opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.main {
	margin-top: 70px;
	min-height: calc(100vh - 140px);
}

/* Article Styles */
.article {
	padding: 60px 0;
}

.article__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.article__title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #1e293b;
	margin-bottom: 30px;
	text-align: center;
}

.article__image {
	margin: 40px 0;
	text-align: center;
}

.article__img {
	width: 100%;
	max-width: 800px;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

.article__content {
	max-width: 800px;
	margin: 0 auto;
}

.article__intro {
	font-size: 18px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 50px;
	text-align: center;
}

.article__section {
	margin-bottom: 50px;
}

.article__subtitle {
	font-size: 32px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 20px;
	line-height: 1.3;
}

.article__subheading {
	font-size: 24px;
	font-weight: 600;
	color: #334155;
	margin: 30px 0 15px 0;
}

.article__section p {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 20px;
}

.article__table {
	margin: 30px 0;
	overflow-x: auto;
}

.table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table__header {
	background: #f8fafc;
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: #1e293b;
	border-bottom: 2px solid #e2e8f0;
}

.table__cell {
	padding: 15px;
	border-bottom: 1px solid #e2e8f0;
	color: #475569;
}

.table__row:hover {
	background: #f8fafc;
}

.article__list {
	margin: 20px 0;
}

.list {
	list-style: none;
	padding-left: 0;
}

.list__item {
	padding: 8px 0;
	padding-left: 20px;
	position: relative;
	color: #475569;
}

.list__item::before {
	content: '•';
	color: #2563eb;
	position: absolute;
	left: 0;
	font-weight: bold;
}

/* FAQ Styles */
.faq {
	padding: 60px 0;
}

.faq__container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq__title {
	font-size: 48px;
	font-weight: 700;
	color: #1e293b;
	text-align: center;
	margin-bottom: 50px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq__question {
	font-size: 20px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 15px;
	line-height: 1.3;
}

.faq__answer p {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin: 0;
}

/* Privacy Styles */
.privacy {
	padding: 60px 0;
}

.privacy__container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy__title {
	font-size: 48px;
	font-weight: 700;
	color: #1e293b;
	text-align: center;
	margin-bottom: 50px;
}

.privacy__content {
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy__section {
	margin-bottom: 40px;
}

.privacy__subtitle {
	font-size: 24px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 20px;
}

.privacy__subheading {
	font-size: 18px;
	font-weight: 600;
	color: #334155;
	margin: 20px 0 10px 0;
}

.privacy__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 15px;
}

.privacy__list {
	list-style: none;
	padding-left: 0;
	margin: 15px 0;
}

.privacy__list li {
	padding: 5px 0;
	padding-left: 20px;
	position: relative;
	color: #475569;
}

.privacy__list li::before {
	content: '•';
	color: #2563eb;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.privacy__contact {
	background: #f8fafc;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.privacy__contact p {
	margin-bottom: 5px;
}

/* Contacts Styles */
.contacts {
	padding: 60px 0;
}

.contacts__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contacts__title {
	font-size: 48px;
	font-weight: 700;
	color: #1e293b;
	text-align: center;
	margin-bottom: 50px;
}

.contacts__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.contacts__image {
	text-align: center;
}

.contacts__img {
	width: 100%;
	max-width: 500px;
	height: 350px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contacts__info {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contacts__description {
	font-size: 18px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 30px;
}

.contacts__section {
	margin-bottom: 30px;
}

.contacts__subtitle {
	font-size: 20px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 15px;
}

.contacts__item {
	margin-bottom: 10px;
	font-size: 16px;
	color: #475569;
}

.contacts__social {
	display: flex;
	gap: 20px;
}

.contacts__social-link {
	color: #2563eb;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contacts__social-link:hover {
	color: #1d4ed8;
}

.contacts__link {
	color: #2563eb;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contacts__link:hover {
	color: #1d4ed8;
}

/* Footer Styles */
.footer {
	background: #1e293b;
	color: #94a3b8;
	padding: 20px 0;
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.footer__text {
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		padding: 20px;
	}

	.header__nav--active {
		display: block;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 15px;
	}

	.header__burger {
		display: flex;
	}

	.article__title {
		font-size: 36px;
	}

	.article__subtitle {
		font-size: 28px;
	}

	.article__img {
		height: 250px;
	}

	.faq__title,
	.privacy__title,
	.contacts__title {
		font-size: 36px;
	}

	.privacy__content {
		padding: 30px 20px;
	}

	.contacts__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contacts__info {
		padding: 30px 20px;
	}

	.table {
		font-size: 14px;
	}

	.table__header,
	.table__cell {
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.header__container {
		padding: 0 15px;
	}

	.article__container,
	.faq__container,
	.privacy__container,
	.contacts__container {
		padding: 0 15px;
	}

	.article__title {
		font-size: 28px;
	}

	.article__subtitle {
		font-size: 24px;
	}

	.article__subheading {
		font-size: 20px;
	}

	.faq__title,
	.privacy__title,
	.contacts__title {
		font-size: 28px;
	}

	.faq__item,
	.contacts__info {
		padding: 20px;
	}

	.privacy__content {
		padding: 20px;
	}

	.contacts__img {
		height: 250px;
	}

	.table {
		font-size: 12px;
	}

	.table__header,
	.table__cell {
		padding: 8px;
	}
}
