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

body {
	font-family: 'Nunito', sans-serif; /* Soft, rounded sans-serif */
	line-height: 1.6;
	color: #333; /* Soft dark gray */
	background-color: #e0e5ec; /* Light, soft background for neo effect */
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: #483d8b; /* Muted purple-blue for links */
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #6a5acd; /* Slightly lighter on hover */
	text-decoration: underline;
}

strong {
	font-weight: 700;
	color: #2c3e50; /* Stronger dark for emphasis */
}

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

/* Global Container Styles for a neo feel */
.header__container,
.hero__container,
.content-section__container,
.faq-section__container,
.conclusion-section__container,
.footer__container {
	max-width: 1000px; /* Slightly narrower content area */
	width: calc(100% - 10px); /* 30px padding on each side */
	margin: 0 auto;
	padding: 40px 0;
	background-color: #e0e5ec; /* Match body background for seamless effect */
	border-radius: 15px; /* More rounded corners */
	box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.9); /* Neomorphism shadow */
	position: relative;
	transition: all 0.3s ease;
}

/* Header */
.header {
	background-color: #e0e5ec;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow for header */
}

.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-radius: 0;
}

.header__logo {
	font-family: 'Inter', sans-serif;
	color: #483d8b; /* Muted purple-blue */
	text-decoration: none;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #483d8b, #6a5acd); /* Soft gradient for logo */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform 0.2s ease;
}

.header__logo:hover {
	transform: scale(1.02);
}

.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: 'Nunito', sans-serif;
	color: #555; /* Soft gray */
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 0;
	position: relative;
	transition: color 0.3s ease, transform 0.2s ease;
}

.header__link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 2px;
	background-color: #6a5acd; /* Accent color underline */
	border-radius: 1px;
	transition: transform 0.3s ease;
}

.header__link:hover {
	color: #483d8b; /* Darker accent on hover */
	transform: translateY(-1px);
}

.header__link:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.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: #555;
	margin-bottom: 5px;
	border-radius: 2px;
	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: 60px 0;
	text-align: center;
	background: linear-gradient(135deg, #e0e5ec 0%, #d8e2ed 100%); /* Subtle gradient */
	border-bottom: 2px solid #ccd5e0; /* Soft border */
	border-radius: 0 0 20px 20px; /* More rounded bottom corners */
	box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.03); /* Subtle inner shadow */
}

.hero__container {
	padding: 50px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
}

.hero__title {
	font-family: 'Inter', sans-serif;
	font-size: 3.5rem; /* Large, impactful title */
	color: #2c3e50; /* Deep dark gray */
	margin-bottom: 30px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.8px;
	position: relative;
	padding-bottom: 25px;
}

.hero__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background-color: #6a5acd; /* Accent line */
	border-radius: 1.5px;
}

.hero__description {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
	text-align: justify;
	padding: 25px 30px;
	background-color: #e0e5ec; /* Match body for integration */
	border-radius: 10px;
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Subtle inner neomorphism */
}

/* Content Section (General for all H2-H3 sections) */
.content-section,
.faq-section,
.conclusion-section {
	padding: 50px;
	background-color: #e0e5ec;
	border-radius: 15px;
	box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.9);
	width: calc(100% - 60px);
}

.content-section__title,
.faq-section__title,
.conclusion-section__title {
	font-family: 'Inter', sans-serif;
	font-size: 2.8rem;
	color: #2c3e50;
	margin-bottom: 40px;
	text-align: center;
	font-weight: 700;
	letter-spacing: -0.5px;
	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: 80px;
	height: 2.5px;
	background-color: #6a5acd;
	border-radius: 1.25px;
}

.content-section__subtitle,
.faq-section__question,
.content-section__heading-tertiary {
	font-family: 'Inter', sans-serif;
	font-size: 1.8rem;
	color: #483d8b; /* Muted purple-blue */
	margin-top: 40px;
	margin-bottom: 25px;
	text-align: left;
	font-weight: 600;
	padding-left: 20px;
	border-left: 4px solid #6a5acd; /* Accent line */
	line-height: 1.3;
}

.content-section__text,
.faq-section__answer {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 15px;
	text-align: justify;
	padding: 20px 25px;
	background-color: #e0e5ec;
	border-radius: 10px;
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Subtle inner neomorphism */
}

.content-section__image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 40px auto;
	border-radius: 15px;
	box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.7), -8px -8px 16px rgba(255, 255, 255, 0.8); /* Neomorphism shadow */
	transition: transform 0.3s ease;
}

.content-section__image:hover {
	transform: translateY(-5px); /* Soft lift on hover */
	box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.8), -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.table-wrapper {
	overflow-x: auto;
	margin: 40px 0;
	padding: 30px;
	background-color: #e0e5ec;
	border-radius: 15px;
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Inner neomorphism */
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	min-width: 700px; /* Ensure table is wide enough to scroll on smaller screens */
	background-color: #ffffff; /* Table rows on white for contrast */
	border-radius: 10px;
	overflow: hidden; /* For rounded corners on first/last rows */
}

.data-table th,
.data-table td {
	border: 1px solid #d0d7e2; /* Soft gray table borders */
	padding: 18px 22px;
	text-align: left;
	font-size: 0.95rem;
	color: #444;
}

.data-table th {
	background-color: #483d8b; /* Muted purple-blue header */
	color: #ffffff;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

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

.data-table tbody tr:hover {
	background-color: #eef2f7; /* Light blue-gray highlight on hover */
}

.feature-list,
.priority-list,
.content-section__list {
	list-style: none;
	margin: 30px 0 40px 0px;
	color: #555;
	background-color: #e0e5ec;
	border-radius: 10px;
	padding: 30px 35px;
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Inner neomorphism */
}

.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: '▪'; /* Simple bullet for neo */
	color: #6a5acd; /* Accent color */
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2em;
}

/* Horizontal Rule (Divider) */
.divider {
	border: none;
	border-top: 1px solid #d0d7e2; /* Soft, thin line */
	margin: 60px auto;
	width: 60%;
	opacity: 0.7;
}

/* Footer */
.footer {
	background-color: #e0e5ec;
	color: #555;
	text-align: center;
	padding: 25px 0;
	margin-top: 60px;
	border-top: 1px solid #d0d7e2;
	box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.03); /* Subtle inner shadow */
}

.footer__text {
	font-size: 0.9rem;
	letter-spacing: 0.2px;
	font-family: 'Nunito', sans-serif;
}

/* Page Specific Styles */
/* FAQ Page (faq.html) - Accordion adjustments for neo */
.faq-section__question {
	font-family: 'Inter', sans-serif;
	color: #2c3e50;
	cursor: pointer;
	display: block;
	padding: 20px 25px;
	margin-bottom: 15px;
	background-color: #e0e5ec;
	border-radius: 10px;
	box-shadow: 3px 3px 6px #cad1d8, -3px -3px 6px #f6ffff; /* Neomorphism effect */
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
	padding-right: 50px; /* Space for icon */
}

.faq-section__question::after {
	content: '+'; /* Simple plus/minus */
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.8rem;
	color: #6a5acd; /* Accent color */
	font-weight: normal;
	transition: transform 0.3s ease;
}

.faq-section__question.active {
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Inner shadow when active (pressed) */
	color: #483d8b;
}

.faq-section__question.active::after {
	content: '-';
	transform: translateY(-50%) rotate(0deg);
	color: #483d8b;
}

.faq-section__question:hover {
	box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.7), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.faq-section__answer {
	padding: 20px 25px;
	display: none;
	background-color: #f7f9fc; /* Slightly lighter background for answer */
	border-radius: 8px;
	margin-bottom: 25px;
	line-height: 1.7;
	color: #555;
	box-shadow: inset 2px 2px 5px #d0d7e2; /* Very subtle inner shadow */
}

/* Contacts Page (contacts.html) */
.contacts-section__form {
	padding: 40px;
	background-color: #e0e5ec;
	border-radius: 15px;
	box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.9);
	margin-top: 30px;
}

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

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

.contacts-section__form-group input[type='text'],
.contacts-section__form-group input[type='email'],
.contacts-section__form-group textarea {
	width: 100%;
	padding: 15px 20px;
	border: none; /* No visible border for neo effect */
	border-radius: 10px;
	font-size: 1rem;
	background-color: #e0e5ec;
	color: #333;
	font-family: 'Nunito', sans-serif;
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Inset shadow for input fields */
	transition: all 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 {
	outline: none;
	box-shadow: inset 2px 2px 5px #b8c2d1, inset -2px -2px 5px #f0f7ff,
		0 0 0 3px rgba(106, 90, 205, 0.2); /* Accent border on focus */
}

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

.contacts-section__button {
	background-color: #6a5acd; /* Accent button color */
	color: #ffffff;
	padding: 15px 30px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 3px 3px 6px #cad1d8, -3px -3px 6px #f6ffff; /* Subtle button shadow */
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contacts-section__button:hover {
	background-color: #483d8b; /* Darker accent on hover */
	box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.7), -4px -4px 8px rgba(255, 255, 255, 0.8);
	transform: translateY(-2px);
}

.contacts-section__button:active {
	box-shadow: inset 3px 3px 6px #cad1d8, inset -3px -3px 6px #f6ffff; /* Pressed effect */
	transform: translateY(0);
}

/* 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;
	}

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

@media (max-width: 768px) {
	.header__menu {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 68px; /* Adjust based on header height */
		left: 0;
		width: 100%;
		height: calc(100vh - 68px);
		background-color: #e0e5ec;
		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: 1px solid #d0d7e2;
		box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.03);
	}

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

	.header__item {
		margin: 15px 0;
	}

	.header__link {
		font-size: 1.15rem;
		padding: 15px 0;
		border-bottom: 1px solid rgba(163, 177, 198, 0.4);
		width: 80%;
		margin: 0 auto;
		color: #555;
	}

	.header__link:hover {
		color: #483d8b;
		border-color: #6a5acd;
	}

	.header__link::after {
		display: none; /* Hide underline on mobile menu */
	}

	.header__burger {
		display: flex;
	}

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

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

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

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

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

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

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

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

	.data-table {
		min-width: 550px; /* Still allow scroll */
	}

	.data-table th,
	.data-table td {
		padding: 12px 15px;
		font-size: 0.85rem;
	}

	.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: 1rem;
	}
}

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

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

	.hero__container {
		padding: 25px 15px;
	}

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

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

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

	.content-section,
	.faq-section,
	.conclusion-section {
		padding: 25px 15px;
		width: calc(100% - 30px);
	}

	.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: 50px;
	}

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

	.data-table {
		min-width: 400px;
	}

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

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

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