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

body {
	font-family: 'Courier New', monospace;
	line-height: 1.4;
	color: #000;
	background-color: #fff;
	font-weight: bold;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 4px solid #000;
}

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

/* Header Styles - Brutalist */
.header {
	background: #000;
	color: #fff;
	border-bottom: 8px solid #ff0000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

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

.header__logo-link {
	font-size: 32px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 4px solid #fff;
	padding: 8px 16px;
	background: #ff0000;
	transition: all 0.2s ease;
}

.header__logo-link:hover {
	background: #fff;
	color: #000;
	border-color: #000;
}

.header__nav {
	display: flex;
}

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

.header__nav-link {
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 24px;
	border: 4px solid transparent;
	background: #000;
	transition: all 0.2s ease;
	font-size: 16px;
}

.header__nav-link:hover,
.header__nav-link--active {
	background: #fff;
	color: #000;
	border-color: #000;
}

.header__burger {
	display: none;
	flex-direction: column;
	background: #ff0000;
	border: 4px solid #fff;
	cursor: pointer;
	padding: 8px;
	gap: 4px;
}

.header__burger-line {
	width: 30px;
	height: 4px;
	background-color: #fff;
	transition: transform 0.3s ease;
}

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

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

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

/* Main Content - Brutalist */
.main {
	margin-top: 80px;
	min-height: calc(100vh - 160px);
	background: #fff;
}

/* Article Styles - Brutalist */
.article {
	padding: 40px 0;
	background: #fff;
}

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

.article__title {
	font-size: 64px;
	font-weight: 900;
	line-height: 1.1;
	color: #000;
	margin-bottom: 40px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -2px;
	border: 8px solid #000;
	padding: 40px;
	background: #ffff00;
}

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

.article__img {
	width: 100%;
	max-width: 1000px;
	height: 500px;
	object-fit: cover;
	border: 8px solid #000;
	margin: 0 auto;
	filter: contrast(1.2) saturate(1.3);
}

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

.article__intro {
	font-size: 20px;
	line-height: 1.5;
	color: #000;
	margin-bottom: 60px;
	border: 6px solid #000;
	padding: 40px;
	background: #f0f0f0;
	font-weight: bold;
}

.article__section {
	margin-bottom: 60px;
	border: 6px solid #000;
	padding: 40px;
	background: #fff;
}

.article__subtitle {
	font-size: 40px;
	font-weight: 900;
	color: #000;
	margin-bottom: 30px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: -1px;
	border-bottom: 6px solid #000;
	padding-bottom: 20px;
}

.article__subheading {
	font-size: 28px;
	font-weight: 900;
	color: #000;
	margin: 40px 0 20px 0;
	text-transform: uppercase;
	background: #ffff00;
	padding: 16px;
	border: 4px solid #000;
}

.article__section p {
	font-size: 18px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 24px;
	font-weight: bold;
}

.article__table {
	margin: 40px 0;
	overflow-x: auto;
	border: 6px solid #000;
}

.table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	font-weight: bold;
}

.table__header {
	background: #000;
	color: #fff;
	padding: 20px;
	text-align: left;
	font-weight: 900;
	border: 4px solid #000;
	text-transform: uppercase;
	font-size: 16px;
}

.table__cell {
	padding: 20px;
	border: 4px solid #000;
	color: #000;
	font-weight: bold;
	background: #f0f0f0;
}

.table__row:nth-child(even) .table__cell {
	background: #e0e0e0;
}

.article__list {
	margin: 30px 0;
	border: 4px solid #000;
	padding: 30px;
	background: #f0f0f0;
}

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

.list__item {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: #000;
	font-weight: bold;
	font-size: 18px;
	border-bottom: 2px solid #000;
}

.list__item::before {
	content: '■';
	color: #ff0000;
	position: absolute;
	left: 0;
	font-weight: 900;
	font-size: 20px;
}

/* FAQ Styles - Brutalist */
.faq {
	padding: 40px 0;
	background: #fff;
}

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

.faq__title {
	font-size: 64px;
	font-weight: 900;
	color: #000;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase;
	border: 8px solid #000;
	padding: 40px;
	background: #ffff00;
}

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

.faq__item {
	background: #fff;
	border: 6px solid #000;
	padding: 40px;
	transition: transform 0.2s ease;
}

.faq__item:hover {
	transform: translate(-4px, -4px);
	box-shadow: 8px 8px 0 #000;
}

.faq__question {
	font-size: 24px;
	font-weight: 900;
	color: #000;
	margin-bottom: 20px;
	line-height: 1.3;
	text-transform: uppercase;
	background: #ffff00;
	padding: 16px;
	border: 4px solid #000;
}

.faq__answer p {
	font-size: 18px;
	line-height: 1.6;
	color: #000;
	margin: 0;
	font-weight: bold;
}

/* Privacy Styles - Brutalist */
.privacy {
	padding: 40px 0;
	background: #fff;
}

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

.privacy__title {
	font-size: 64px;
	font-weight: 900;
	color: #000;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase;
	border: 8px solid #000;
	padding: 40px;
	background: #ffff00;
}

.privacy__content {
	background: #fff;
	border: 6px solid #000;
	padding: 40px;
}

.privacy__section {
	margin-bottom: 50px;
	border-bottom: 4px solid #000;
	padding-bottom: 30px;
}

.privacy__subtitle {
	font-size: 32px;
	font-weight: 900;
	color: #000;
	margin-bottom: 30px;
	text-transform: uppercase;
	background: #ffff00;
	padding: 16px;
	border: 4px solid #000;
}

.privacy__subheading {
	font-size: 24px;
	font-weight: 900;
	color: #000;
	margin: 30px 0 15px 0;
	text-transform: uppercase;
	background: #f0f0f0;
	padding: 12px;
	border: 4px solid #000;
}

.privacy__content p {
	font-size: 18px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 20px;
	font-weight: bold;
}

.privacy__list {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
	border: 4px solid #000;
	padding: 20px;
	background: #f0f0f0;
}

.privacy__list li {
	padding: 8px 0;
	padding-left: 30px;
	position: relative;
	color: #000;
	font-weight: bold;
	border-bottom: 2px solid #000;
}

.privacy__list li::before {
	content: '■';
	color: #ff0000;
	position: absolute;
	left: 0;
	font-weight: 900;
}

.privacy__contact {
	background: #ffff00;
	padding: 30px;
	border: 6px solid #000;
	margin: 30px 0;
}

.privacy__contact p {
	margin-bottom: 8px;
	font-weight: 900;
}

/* Contacts Styles - Brutalist */
.contacts {
	padding: 40px 0;
	background: #fff;
}

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

.contacts__title {
	font-size: 64px;
	font-weight: 900;
	color: #000;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase;
	border: 8px solid #000;
	padding: 40px;
	background: #ffff00;
}

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

.contacts__image {
	text-align: center;
}

.contacts__img {
	width: 100%;
	max-width: 600px;
	height: 400px;
	object-fit: cover;
	border: 8px solid #000;
	filter: contrast(1.2) saturate(1.3);
}

.contacts__info {
	background: #fff;
	padding: 40px;
	border: 6px solid #000;
}

.contacts__description {
	font-size: 20px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 40px;
	font-weight: bold;
}

.contacts__section {
	margin-bottom: 40px;
	border-bottom: 4px solid #000;
	padding-bottom: 20px;
}

.contacts__subtitle {
	font-size: 24px;
	font-weight: 900;
	color: #000;
	margin-bottom: 20px;
	text-transform: uppercase;
	background: #ffff00;
	padding: 12px;
	border: 4px solid #000;
}

.contacts__item {
	margin-bottom: 16px;
	font-size: 18px;
	color: #000;
	font-weight: bold;
	padding: 12px;
	border: 2px solid #000;
	background: #f0f0f0;
}

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

.contacts__social-link {
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
	padding: 12px 20px;
	border: 4px solid #000;
	background: #ffff00;
	transition: all 0.2s ease;
}

.contacts__social-link:hover {
	background: #000;
	color: #fff;
}

.contacts__link {
	color: #000;
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 3px;
}

.contacts__link:hover {
	background: #ffff00;
	padding: 2px 4px;
}

/* Footer Styles - Brutalist */
.footer {
	background: #000;
	color: #fff;
	padding: 30px 0;
	border-top: 8px solid #ff0000;
}

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

.footer__text {
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive Design - Brutalist */
@media (max-width: 768px) {
	.header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #000;
		border-top: 4px solid #fff;
		padding: 20px;
	}

	.header__nav--active {
		display: block;
	}

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

	.header__nav-link {
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 4px;
	}

	.header__burger {
		display: flex;
	}

	.article__title {
		font-size: 40px;
		padding: 20px;
	}

	.article__subtitle {
		font-size: 28px;
	}

	.article__subheading {
		font-size: 20px;
	}

	.article__img {
		height: 300px;
	}

	.faq__title,
	.privacy__title,
	.contacts__title {
		font-size: 40px;
		padding: 20px;
	}

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

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

	.contacts__img {
		height: 300px;
	}

	.table {
		font-size: 14px;
	}

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

	.article__section,
	.article__list {
		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: 32px;
		padding: 16px;
	}

	.article__subtitle {
		font-size: 24px;
	}

	.article__subheading {
		font-size: 18px;
		padding: 12px;
	}

	.faq__title,
	.privacy__title,
	.contacts__title {
		font-size: 32px;
		padding: 16px;
	}

	.faq__item,
	.contacts__info,
	.privacy__content {
		padding: 16px;
	}

	.contacts__img {
		height: 250px;
	}

	.table {
		font-size: 12px;
	}

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

	.article__section,
	.article__list {
		padding: 16px;
	}

	.header__logo-link {
		font-size: 24px;
		padding: 6px 12px;
	}

	.header__nav-link {
		font-size: 14px;
		padding: 12px 16px;
	}
}
