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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #1f2937;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	min-height: 100vh;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	border-bottom: 1px solid #e2e8f0;
}

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

.header__logo-text {
	font-size: 24px;
	font-weight: 700;
	color: #1e40af;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
}

.nav__list {
	display: flex;
	list-style: none;
	gap: 32px;
}

.nav__link {
	text-decoration: none;
	color: #4b5563;
	font-weight: 500;
	font-size: 16px;
	position: relative;
	padding: 8px 16px;
	border-radius: 8px;
	background: linear-gradient(135deg, transparent 0%, transparent 100%);
}

.nav__link:hover {
	color: #1e40af;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.nav__link--active {
	color: #1e40af;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

.burger {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	gap: 4px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.burger__line {
	width: 24px;
	height: 3px;
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	border-radius: 2px;
}

.burger--active .burger__line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger--active .burger__line:nth-child(2) {
	opacity: 0;
}

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

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

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

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

.article__title {
	font-size: 48px;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 40px;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(31, 41, 55, 0.1);
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.article__subtitle {
	font-size: 32px;
	font-weight: 700;
	color: #1f2937;
	margin: 50px 0 20px;
	line-height: 1.3;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.article__subtitle--small {
	font-size: 24px;
	margin: 30px 0 15px;
}

.article__text {
	font-size: 18px;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 20px;
	text-shadow: 0 1px 1px rgba(75, 85, 99, 0.05);
}

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

.article__img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	border: 1px solid #e2e8f0;
}

.article__table {
	margin: 30px 0;
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.table {
	width: 100%;
	border-collapse: collapse;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border-radius: 12px;
	overflow: hidden;
}

.table__header {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	padding: 16px;
	text-align: left;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border-bottom: 2px solid #1d4ed8;
}

.table__cell {
	padding: 16px;
	border-bottom: 1px solid #e5e7eb;
	color: #4b5563;
	background: linear-gradient(135deg, transparent 0%, rgba(248, 250, 252, 0.5) 100%);
}

.table__row:hover .table__cell {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.article__features {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 30px;
	border-radius: 16px;
	margin: 30px 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid #cbd5e1;
}

.article__features-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

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

.article__list-item {
	padding: 8px 0;
	color: #4b5563;
	position: relative;
	padding-left: 20px;
}

.article__list-item::before {
	content: '•';
	color: #1e40af;
	position: absolute;
	left: 0;
	font-weight: bold;
	text-shadow: 0 1px 1px rgba(30, 64, 175, 0.2);
}

.article__process {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	padding: 30px;
	border-radius: 16px;
	margin: 30px 0;
	border: 2px solid #3b82f6;
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.article__process-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.article__process-list {
	list-style: none;
	counter-reset: step-counter;
}

.article__process-item {
	counter-increment: step-counter;
	padding: 8px 0;
	color: #4b5563;
	position: relative;
	padding-left: 30px;
}

.article__process-item::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

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

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

.faq__title {
	font-size: 48px;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 40px;
	text-align: center;
	text-shadow: 0 2px 4px rgba(31, 41, 55, 0.1);
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq__item {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border: 1px solid #e2e8f0;
}

.faq__item:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.faq__question {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 15px;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.faq__answer {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	text-shadow: 0 1px 1px rgba(75, 85, 99, 0.05);
}

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

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

.privacy__title {
	font-size: 48px;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 40px;
	text-align: center;
	text-shadow: 0 2px 4px rgba(31, 41, 55, 0.1);
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.privacy__section {
	margin-bottom: 40px;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}

.privacy__subtitle {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.privacy__subtitle--small {
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: 25px;
}

.privacy__text {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin-bottom: 15px;
	text-shadow: 0 1px 1px rgba(75, 85, 99, 0.05);
}

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

.privacy__list-item {
	padding: 5px 0;
	color: #4b5563;
	position: relative;
	padding-left: 20px;
}

.privacy__list-item::before {
	content: '•';
	color: #1e40af;
	position: absolute;
	left: 0;
	font-weight: bold;
	text-shadow: 0 1px 1px rgba(30, 64, 175, 0.2);
}

.privacy__contact {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 20px;
	border-radius: 12px;
	margin: 20px 0;
	border: 1px solid #cbd5e1;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.privacy__contact-line {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 5px;
}

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

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

.contacts__title {
	font-size: 48px;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 40px;
	text-align: center;
	text-shadow: 0 2px 4px rgba(31, 41, 55, 0.1);
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contacts__content {
	display: grid;
	gap: 40px;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border: 1px solid #e2e8f0;
}

.contacts__image {
	text-align: center;
}

.contacts__img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	border: 1px solid #e2e8f0;
}

.contacts__description {
	font-size: 18px;
	line-height: 1.7;
	color: #4b5563;
	margin-bottom: 40px;
	text-shadow: 0 1px 1px rgba(75, 85, 99, 0.05);
}

.contacts__section {
	margin-bottom: 30px;
	padding: 20px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 12px;
	border: 1px solid #cbd5e1;
}

.contacts__subtitle {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.contacts__item {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.contacts__label {
	font-weight: 600;
	color: #1f2937;
	text-shadow: 0 1px 1px rgba(31, 41, 55, 0.1);
}

.contacts__link {
	color: #1e40af;
	text-decoration: none;
	font-weight: 500;
	text-shadow: 0 1px 1px rgba(30, 64, 175, 0.1);
}

.contacts__link:hover {
	color: #1d4ed8;
	text-shadow: 0 1px 2px rgba(29, 78, 216, 0.2);
}

.contacts__text {
	color: #4b5563;
}

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

.contacts__social-link {
	color: #1e40af;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 8px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 1px solid #3b82f6;
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.contacts__social-link:hover {
	color: #1d4ed8;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	box-shadow: 0 4px 16px rgba(29, 78, 216, 0.2);
}

.contacts__learn-more {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.7;
}

/* Footer Styles */
.footer {
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	padding: 30px 0;
	margin-top: auto;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer__text {
	color: #9ca3af;
	font-size: 14px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.burger {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
		transform: translateY(-200%);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
		border-bottom: 1px solid #e2e8f0;
	}

	.nav--active {
		transform: translateY(0);
	}

	.nav__list {
		flex-direction: column;
		padding: 20px;
		gap: 20px;
	}

	.nav__item {
		text-align: center;
	}

	.nav__link {
		display: block;
		padding: 12px 20px;
		border-radius: 12px;
	}

	.article__title {
		font-size: 36px;
	}

	.article__subtitle {
		font-size: 28px;
	}

	.article__subtitle--small {
		font-size: 22px;
	}

	.article__text {
		font-size: 16px;
	}

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

	.table {
		font-size: 14px;
	}

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

	.article__features,
	.article__process {
		padding: 20px;
	}

	.faq__item {
		padding: 20px;
	}

	.contacts__item {
		flex-direction: column;
		gap: 5px;
	}

	.contacts__content {
		padding: 20px;
	}

	.privacy__section {
		padding: 20px;
	}
}

@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__subtitle--small {
		font-size: 20px;
	}

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

	.table__header,
	.table__cell {
		padding: 8px 4px;
		font-size: 12px;
	}

	.contacts__social {
		flex-direction: column;
		gap: 10px;
	}
}
