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

body {
	font-family: 'Open Sans', sans-serif; /* Clean sans-serif for body */
	line-height: 1.7;
	color: #4a4a4a; /* Muted dark gray */
	background-color: #f7f3ed; /* Off-white, creamy background */
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative; /* For background texture */
}

/* Subtle paper/texture background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23e0d8cc" fill-opacity="0.4" fill-rule="evenodd"%3E%3Cpath d="M0 0h3v3H0V0zm3 3h3v3H3V3z"/%3E%3C/g%3E%3C/svg%3E'); /* Subtle dot pattern or replace with a real texture image */
	opacity: 0.5;
	pointer-events: none;
	z-index: -1; /* Behind content */
}

a {
	color: #6a0572; /* Deep purple for links */
	text-decoration: none;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
	color: #9b59b6; /* Lighter purple on hover */
	text-decoration: underline;
}

strong {
	font-weight: 600; /* Slightly bolder for emphasis */
	color: #2c3e50; /* Darker tone for strong text */
}

.main {
	padding-top: 100px; /* Space for fixed header */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px; /* Space between sections */
}

/* Global Container Styles for the "Framed" Effect */
.header__container,
.hero__container,
.content-section__container,
.faq-section__container,
.conclusion-section__container,
.footer__container {
	max-width: 1000px;
	width: calc(100% - 10px); /* 30px padding on each side */
	margin: 0 auto;
	padding: 40px 10px;
	background-color: #ffffff; /* Clean white background for content blocks */
	border: 1px solid #d3c6bb; /* Soft, muted border */
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Classic soft shadow */
	position: relative;
	border-radius: 5px; /* Slightly rounded corners */
}

/* Header */
.header {
	background-color: #2c3e50; /* Dark blue-gray */
	color: #ffffff;
	padding: 18px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	background-color: transparent; /* No background on header container */
	box-shadow: none;
	border: none;
}

.header__logo {
	font-family: 'Playfair Display', serif; /* Elegant serif font */
	color: #f7f3ed; /* Creamy logo color */
	text-decoration: none;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.header__nav {
	display: flex;
	align-items: center;
}

.header__menu {
	list-style: none;
	display: flex;
	margin: 0;
}

.header__item {
	margin-left: 35px;
}

.header__link {
	font-family: 'Open Sans', sans-serif;
	color: #f7f3ed;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 400;
	padding: 10px 0;
	position: relative;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.header__link:hover {
	color: #e0b400; /* Faded gold on hover */
	border-color: #e0b400;
}

.header__burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
	position: relative;
	z-index: 1001;
}

.header__burger span {
	display: block;
	width: 28px;
	height: 3px;
	background-color: #f7f3ed;
	margin-bottom: 5px;
	border-radius: 1px;
	transition: all 0.3s ease-in-out;
}

/* Burger animation for active state */
.header__burger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

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

.header__burger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
	padding: 70px 0;
	text-align: center;
	background-color: #e6e2da; /* Slightly darker cream for hero */
	margin-top: 50px;
	border-bottom: 5px solid #d3c6bb; /* Vintage border line */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero__container {
	padding: 50px;
	background-color: transparent; /* Keep hero container transparent */
	box-shadow: none;
	border: none;
}

.hero__title {
	font-family: 'Playfair Display', serif;
	font-size: 3.8rem;
	color: #2c3e50;
	margin-bottom: 30px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase; /* Classic feel */
	position: relative;
	padding-bottom: 20px;
}

.hero__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 120px;
	height: 3px;
	background-color: #e0b400; /* Faded gold line */
}

.hero__description {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #5d5d5d; /* Softer dark gray */
	margin-bottom: 25px;
	text-align: justify;
	padding: 20px 30px;
	background-color: #fcfcfc; /* Lighter background for text blocks */
	border-left: 4px solid #b3a088; /* Faded brown accent */
	box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
	border-radius: 3px;
}

/* Content Section (General for all H2-H3 sections) */
.content-section,
.faq-section,
.conclusion-section {
	padding: 50px;
	background-color: #ffffff;
	border: 1px solid #d3c6bb;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
	width: calc(100% - 60px);
}

.content-section__title,
.faq-section__title,
.conclusion-section__title {
	font-family: 'Playfair Display', serif;
	font-size: 3.2rem;
	color: #2c3e50;
	margin-bottom: 40px;
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
}

.content-section__title::after,
.faq-section__title::after,
.conclusion-section__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background-color: #b3a088; /* Faded brown line */
	border-radius: 1px;
}

.content-section__subtitle,
.faq-section__question,
.content-section__heading-tertiary {
	/* For Privacy Policy H3s */
	font-family: 'Playfair Display', serif;
	font-size: 1.9rem;
	color: #6a0572; /* Deep purple */
	margin-top: 50px;
	margin-bottom: 25px;
	text-align: left;
	font-weight: 600;
	padding-left: 20px;
	border-left: 5px solid #e0b400; /* Faded gold accent */
}

.content-section__text,
.faq-section__answer {
	font-size: 1rem;
	line-height: 1.75;
	color: #5d5d5d;
	margin-bottom: 20px;
	text-align: justify;
	padding: 15px 25px;
	background-color: #fcfcfc;
	border-radius: 3px;
	border: 1px dashed #e0d8cc; /* Subtle dashed border */
}

.content-section__image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 40px auto;
	border: 6px solid #d3c6bb; /* Vintage frame effect */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	filter: sepia(0.3) saturate(0.8) contrast(1.1); /* Subtle vintage photo filter */
	border-radius: 2px;
}

.table-wrapper {
	overflow-x: auto;
	margin: 40px 0;
	padding: 25px;
	background-color: #f0f0f0; /* Light gray background for table wrapper */
	border: 1px solid #d3c6bb;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
	border-radius: 3px;
}

.security-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 25px;
	min-width: 750px; /* Ensure table is wide enough to scroll on smaller screens */
}

.security-table th,
.security-table td {
	border: 1px solid #e0d8cc; /* Muted table borders */
	padding: 18px 22px;
	text-align: left;
	font-size: 0.95rem;
	color: #4a4a4a;
}

.security-table th {
	background-color: #2c3e50; /* Dark blue-gray header */
	color: #f7f3ed; /* Creamy text */
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

.security-table tbody tr:nth-child(even) {
	background-color: #fbfbfb; /* Slightly off-white for even rows */
}

.security-table tbody tr:hover {
	background-color: #e6e2da; /* Creamy highlight on hover */
}

.feature-list,
.priority-list,
.content-section__list {
	list-style: none;
	margin: 30px 0 30px 0px;
	color: #4a4a4a;
	background-color: #fcfcfc;
	border: 1px solid #e0d8cc;
	border-radius: 3px;
	padding: 25px 35px;
	box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.03);
}

.feature-list li,
.priority-list li,
.content-section__list li {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.6;
	padding-left: 30px;
	position: relative;
}

.feature-list li:last-child,
.priority-list li:last-child,
.content-section__list li:last-child {
	margin-bottom: 0;
}

.feature-list li::before,
.priority-list li::before,
.content-section__list li::before {
	content: '\2728'; /* Sparkle unicode for subtle vintage flourish */
	color: #e0b400; /* Faded gold for bullet */
	font-weight: normal;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2em;
}

/* Horizontal Rule (Divider) */
.divider {
	border: none;
	border-top: 2px dashed #b3a088; /* Faded brown dashed line */
	margin: 70px auto;
	width: 60%; /* Shorter line for elegance */
	opacity: 0.7;
}

/* Footer */
.footer {
	background-color: #2c3e50;
	color: #000;
	text-align: center;
	padding: 25px 0;
	margin-top: 60px;
	border-top: 4px solid #b3a088;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.footer__text {
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	font-family: 'Open Sans', sans-serif;
}

/* Page Specific Styles */
/* FAQ Page (faq.html) - Accordion adjustments for vintage */
.faq-section__question {
	font-family: 'Playfair Display', serif;
	color: #6a0572;
	cursor: pointer;
	display: block;
	padding: 20px 30px;
	border: 1px solid #d3c6bb;
	margin-bottom: 12px;
	background-color: #fcfcfc;
	border-radius: 3px;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	font-weight: 600;
	position: relative;
	padding-right: 60px; /* Space for icon */
}

.faq-section__question::after {
	content: '+'; /* Simple plus/minus */
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.8rem;
	color: #e0b400; /* Faded gold icon */
	transition: transform 0.3s ease;
}

.faq-section__question.active::after {
	content: '-';
	transform: translateY(-50%) rotate(0deg); /* No rotation for minus */
	color: #9b59b6;
}

.faq-section__question:hover {
	background-color: #e6e2da;
	color: #2c3e50;
	border-color: #b3a088;
}

.faq-section__question.active {
	background-color: #f0f0f0;
	color: #2c3e50;
	border-color: #6a0572;
}

.faq-section__answer {
	padding: 20px 30px;
	display: none;
	background-color: #fcfcfc;
	border: 1px solid #e0d8cc;
	border-top: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	margin-bottom: 25px;
	line-height: 1.7;
	color: #5d5d5d;
}

/* Contacts Page (contacts.html) */
.contacts-section__form {
	padding: 40px;
	border: 1px solid #d3c6bb;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

.contacts-section__form-group {
	margin-bottom: 25px;
}

.contacts-section__form-group label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
}

.contacts-section__form-group input[type='text'],
.contacts-section__form-group input[type='email'],
.contacts-section__form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #d3c6bb;
	border-radius: 3px;
	font-size: 1rem;
	background-color: #fefefe;
	color: #4a4a4a;
	font-family: 'Open Sans', sans-serif;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contacts-section__form-group input[type='text']:focus,
.contacts-section__form-group input[type='email']:focus,
.contacts-section__form-group textarea:focus {
	border-color: #6a0572; /* Deep purple on focus */
	outline: none;
	box-shadow: 0 0 0 3px rgba(106, 5, 114, 0.15);
}

.contacts-section__form-group textarea {
	resize: vertical;
	min-height: 140px;
}

.contacts-section__button {
	background-color: #6a0572; /* Deep purple button */
	color: #ffffff;
	padding: 14px 30px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

.contacts-section__button:hover {
	background-color: #9b59b6; /* Lighter purple on hover */
	transform: translateY(-2px);
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
	.header__item {
		margin-left: 25px;
	}

	.hero__title {
		font-size: 3rem;
	}

	.content-section__title,
	.faq-section__title,
	.conclusion-section__title {
		font-size: 2.5rem;
	}

	.content-section__subtitle,
	.faq-section__question,
	.content-section__heading-tertiary {
		font-size: 1.6rem;
	}

	.security-table th,
	.security-table td {
		padding: 15px 18px;
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.header__menu {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 80px; /* Adjust based on header height */
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: #2c3e50;
		padding: 30px 0;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-100%); /* Slide down from top */
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
		z-index: 999;
		overflow-y: auto;
		border-top: 3px solid #b3a088;
	}

	.header__menu.active {
		display: flex;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header__item {
		margin: 15px 0;
	}

	.header__link {
		font-size: 1.2rem;
		padding: 12px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		width: 80%;
		margin: 0 auto;
		color: #f7f3ed;
	}

	.header__link:hover {
		color: #e0b400;
		border-color: #e0b400;
	}

	.header__burger {
		display: flex;
	}

	.main {
		padding-top: 80px; /* Adjust main content padding */
	}

	.hero__title {
		font-size: 2.4rem;
		padding-bottom: 15px;
	}

	.hero__title::after {
		width: 80px;
	}

	.hero__description {
		font-size: 0.95rem;
		padding: 15px 20px;
	}

	.content-section,
	.faq-section,
	.conclusion-section {
		padding: 40px 25px; /* Reduce horizontal padding */
		width: calc(100% - 40px); /* Adjust container width */
	}

	.content-section__title,
	.faq-section__title,
	.conclusion-section__title {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.content-section__title::after,
	.faq-section__title::after,
	.conclusion-section__title::after {
		width: 80px;
	}

	.content-section__subtitle,
	.faq-section__question,
	.content-section__heading-tertiary {
		font-size: 1.4rem;
		margin-top: 40px;
	}

	.content-section__text,
	.faq-section__answer,
	.feature-list li,
	.priority-list li,
	.content-section__list li {
		font-size: 0.9rem;
		padding: 12px 20px;
	}

	.security-table {
		min-width: 600px; /* Still allow scroll */
	}
}

@media (max-width: 480px) {
	.header__logo {
		font-size: 1.8rem;
	}

	.header__burger span {
		width: 25px;
		height: 2px;
		margin-bottom: 4px;
	}

	.hero__container {
		padding: 30px 15px;
	}

	.hero__title {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.hero__description {
		font-size: 0.85rem;
		padding: 10px 15px;
	}

	.content-section,
	.faq-section,
	.conclusion-section {
		padding: 30px 0;
		width: 100%;
	}

	.content-section__title,
	.faq-section__title,
	.conclusion-section__title {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	.content-section__title::after,
	.faq-section__title::after,
	.conclusion-section__title::after {
		width: 60px;
	}

	.content-section__subtitle,
	.faq-section__question,
	.content-section__heading-tertiary {
		font-size: 1.2rem;
		margin-top: 30px;
		padding-left: 15px;
	}

	.security-table {
		min-width: 450px;
	}

	.security-table th,
	.security-table td {
		padding: 10px 12px;
		font-size: 0.8rem;
	}

	.feature-list,
	.priority-list,
	.content-section__list {
		padding: 20px 25px;
	}

	.feature-list li,
	.priority-list li,
	.content-section__list li {
		font-size: 0.9rem;
		padding-left: 25px;
	}

	.contacts-section__form {
		padding: 30px;
	}

	.contacts-section__form-group label {
		font-size: 0.9rem;
	}

	.contacts-section__form-group input,
	.contacts-section__form-group textarea {
		padding: 12px;
		font-size: 0.9rem;
	}

	.contacts-section__button {
		padding: 12px 25px;
		font-size: 1.05rem;
	}
}
