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

body {
	font-family: 'Georgia', 'Times New Roman', serif;
	line-height: 1.6;
	color: #2c1810;
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
	filter: sepia(20%) saturate(80%) brightness(105%);
}

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

/* Header Styles - Vintage */
.header {
	background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
	color: #f4f1e8;
	border-bottom: 3px solid #654321;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(44, 24, 16, 0.3);
}

.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: 28px;
	font-weight: 700;
	color: #f4f1e8;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #654321 0%, #8b4513 100%);
	border-radius: 6px;
	border: 2px solid #d4af37;
	transition: all 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header__logo-link:hover {
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.header__nav {
	display: flex;
}

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

.header__nav-link {
	font-weight: 600;
	color: #f4f1e8;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 14px 20px;
	border-radius: 4px;
	background: rgba(212, 175, 55, 0.1);
	transition: all 0.3s ease;
	font-size: 14px;
	border: 1px solid transparent;
}

.header__nav-link:hover,
.header__nav-link--active {
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	border-color: #8b4513;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.header__burger {
	display: none;
	flex-direction: column;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	border: 2px solid #8b4513;
	border-radius: 4px;
	cursor: pointer;
	padding: 8px;
	gap: 3px;
}

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

.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 - Vintage */
.main {
	margin-top: 80px;
	min-height: calc(100vh - 160px);
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
}

/* Article Styles - Vintage */
.article {
	padding: 60px 0;
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
}

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

.article__title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #2c1810;
	margin-bottom: 40px;
	text-align: center;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.1);
	padding: 30px;
	border: 3px solid #d4af37;
	border-radius: 12px;
	background-color: rgba(244, 241, 232, 0.9);
	box-shadow: 0 6px 20px rgba(44, 24, 16, 0.15);
}

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

.article__img {
	width: 100%;
	max-width: 800px;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	margin: 0 auto;
	box-shadow: 0 8px 24px rgba(44, 24, 16, 0.2);
	border: 3px solid #d4af37;
}

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

.article__intro {
	font-size: 18px;
	line-height: 1.8;
	color: #2c1810;
	margin-bottom: 50px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	border: 2px solid #d4af37;
	box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
	font-style: italic;
}

.article__section {
	margin-bottom: 50px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 12px;
	border: 2px solid #cd853f;
	box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
}

.article__subtitle {
	font-size: 32px;
	font-weight: 700;
	color: #8b4513;
	margin-bottom: 25px;
	line-height: 1.3;
	letter-spacing: -0.5px;
	border-bottom: 3px solid #d4af37;
	padding-bottom: 15px;
	text-shadow: 1px 1px 2px rgba(44, 24, 16, 0.1);
}

.article__subheading {
	font-size: 24px;
	font-weight: 600;
	color: #a0522d;
	margin: 30px 0 20px 0;
	padding: 15px 20px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.article__section p {
	font-size: 16px;
	line-height: 1.8;
	color: #2c1810;
	margin-bottom: 20px;
	text-align: justify;
}

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

.table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	overflow: hidden;
}

.table__header {
	background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
	color: #f4f1e8;
	padding: 18px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid #654321;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.table__cell {
	padding: 16px 18px;
	border-bottom: 1px solid #d4af37;
	color: #2c1810;
	background: rgba(244, 241, 232, 0.5);
}

.table__row:nth-child(even) .table__cell {
	background: rgba(232, 220, 192, 0.5);
}

.table__row:hover .table__cell {
	background: rgba(212, 175, 55, 0.2);
}

.article__list {
	margin: 25px 0;
	padding: 30px;
	background: rgba(244, 241, 232, 0.8);
	border-radius: 8px;
	border: 2px solid #cd853f;
	box-shadow: 0 2px 8px rgba(44, 24, 16, 0.1);
}

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

.list__item {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: #2c1810;
	font-size: 16px;
	line-height: 1.6;
	border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.list__item::before {
	content: '◆';
	color: #d4af37;
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 14px;
}

/* FAQ Styles - Vintage */
.faq {
	padding: 60px 0;
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
}

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

.faq__title {
	font-size: 48px;
	font-weight: 700;
	color: #2c1810;
	text-align: center;
	margin-bottom: 50px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 30px;
	border: 3px solid #d4af37;
	border-radius: 12px;
	background-color: rgba(244, 241, 232, 0.9);
	box-shadow: 0 6px 20px rgba(44, 24, 16, 0.15);
}

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

.faq__item {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	padding: 30px;
	border: 2px solid #cd853f;
	box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(44, 24, 16, 0.2);
}

.faq__question {
	font-size: 20px;
	font-weight: 600;
	color: #8b4513;
	margin-bottom: 15px;
	line-height: 1.4;
	padding: 12px 16px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.faq__answer p {
	font-size: 16px;
	line-height: 1.7;
	color: #2c1810;
	margin: 0;
	text-align: justify;
}

/* Privacy Styles - Vintage */
.privacy {
	padding: 60px 0;
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
}

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

.privacy__title {
	font-size: 48px;
	font-weight: 700;
	color: #2c1810;
	text-align: center;
	margin-bottom: 50px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 30px;
	border: 3px solid #d4af37;
	border-radius: 12px;
	background-color: rgba(244, 241, 232, 0.9);
	box-shadow: 0 6px 20px rgba(44, 24, 16, 0.15);
}

.privacy__content {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	padding: 40px;
	border: 2px solid #cd853f;
	box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
}

.privacy__section {
	margin-bottom: 40px;
	border-bottom: 2px solid rgba(212, 175, 55, 0.3);
	padding-bottom: 25px;
}

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

.privacy__subtitle {
	font-size: 26px;
	font-weight: 600;
	color: #8b4513;
	margin-bottom: 20px;
	padding: 12px 16px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.privacy__subheading {
	font-size: 20px;
	font-weight: 600;
	color: #a0522d;
	margin: 25px 0 12px 0;
	padding: 8px 12px;
	background: rgba(212, 175, 55, 0.2);
	border-radius: 4px;
	border-left: 4px solid #d4af37;
}

.privacy__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #2c1810;
	margin-bottom: 16px;
	text-align: justify;
}

.privacy__list {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
	padding: 20px;
	background: rgba(244, 241, 232, 0.6);
	border-radius: 6px;
	border: 1px solid #d4af37;
}

.privacy__list li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: #2c1810;
	line-height: 1.6;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.privacy__list li:last-child {
	border-bottom: none;
}

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

.privacy__contact {
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	padding: 25px;
	border-radius: 8px;
	margin: 25px 0;
	color: #2c1810;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.privacy__contact p {
	margin-bottom: 6px;
	font-weight: 600;
	color: #2c1810;
}

/* Contacts Styles - Vintage */
.contacts {
	padding: 60px 0;
	background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
}

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

.contacts__title {
	font-size: 48px;
	font-weight: 700;
	color: #2c1810;
	text-align: center;
	margin-bottom: 50px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 30px;
	border: 3px solid #d4af37;
	border-radius: 12px;
	background-color: rgba(244, 241, 232, 0.9);
	box-shadow: 0 6px 20px rgba(44, 24, 16, 0.15);
}

.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 8px 24px rgba(44, 24, 16, 0.2);
	border: 3px solid #d4af37;
}

.contacts__info {
	background: rgba(255, 255, 255, 0.8);
	padding: 35px;
	border-radius: 12px;
	border: 2px solid #cd853f;
	box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
}

.contacts__description {
	font-size: 18px;
	line-height: 1.7;
	color: #2c1810;
	margin-bottom: 30px;
	text-align: justify;
	font-style: italic;
}

.contacts__section {
	margin-bottom: 30px;
	border-bottom: 2px solid rgba(212, 175, 55, 0.3);
	padding-bottom: 20px;
}

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

.contacts__subtitle {
	font-size: 20px;
	font-weight: 600;
	color: #8b4513;
	margin-bottom: 15px;
	padding: 10px 14px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #2c1810;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.contacts__item {
	margin-bottom: 12px;
	font-size: 16px;
	color: #2c1810;
	padding: 12px;
	background: rgba(244, 241, 232, 0.6);
	border-radius: 4px;
	border-left: 4px solid #d4af37;
}

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

.contacts__social-link {
	color: #2c1810;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 16px;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.contacts__social-link:hover {
	background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
	color: #f4f1e8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.contacts__link {
	color: #8b4513;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: #d4af37;
	text-decoration-thickness: 2px;
}

.contacts__link:hover {
	color: #d4af37;
	background: rgba(212, 175, 55, 0.1);
	padding: 2px 4px;
	border-radius: 3px;
}

/* Footer Styles - Vintage */
.footer {
	background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
	color: #f4f1e8;
	padding: 30px 0;
	border-top: 3px solid #654321;
	box-shadow: 0 -2px 8px rgba(44, 24, 16, 0.3);
}

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

.footer__text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design - Vintage */
@media (max-width: 768px) {
	.header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
		border-top: 2px solid #654321;
		padding: 20px;
		box-shadow: 0 4px 12px rgba(44, 24, 16, 0.3);
	}

	.header__nav--active {
		display: block;
	}

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

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

	.header__burger {
		display: flex;
	}

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

	.article__subtitle {
		font-size: 26px;
	}

	.article__subheading {
		font-size: 20px;
	}

	.article__img {
		height: 250px;
	}

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

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

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

	.contacts__img {
		height: 250px;
	}

	.table {
		font-size: 14px;
	}

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

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

@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;
		padding: 16px;
	}

	.article__subtitle {
		font-size: 22px;
	}

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

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

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

	.contacts__img {
		height: 200px;
	}

	.table {
		font-size: 12px;
	}

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

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

	.header__logo-link {
		font-size: 20px;
		padding: 8px 14px;
	}

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