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

body {
	font-family: 'Lato', sans-serif; /* Clean, highly readable sans-serif */
	line-height: 1.7;
	color: #343a40; /* Dark charcoal for body text */
	background-color: #f8f9fa; /* Very light gray background */
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: #007bff; /* Primary brand blue for links */
	text-decoration: none;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
	color: #0056b3; /* Darker blue on hover */
	text-decoration: underline;
}

strong {
	font-weight: 700;
	color: #212529; /* Even darker for strong emphasis */
}

.main {
	padding-top: 70px; /* Space for fixed header */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px; /* Space between content blocks */
	padding-bottom: 50px; /* Padding before footer */
}

/* Global Container & Block Styling */
.header__container,
.hero-section__container,
.content-block__container,
.faq-section__container,
.conclusion-section__container,
.footer__container {
	max-width: 1100px; /* Wider content area for showcase */
	width: calc(100% - 60px); /* 30px padding on each side */
	margin: 0 auto;
	padding: 40px;
	background-color: #ffffff; /* White background for main content blocks */
	border-radius: 8px; /* Slightly rounded corners */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft, subtle shadow */
	transition: all 0.3s ease;
}

.hero-section__container,
.content-block__container,
.faq-section__container,
.conclusion-section__container {
	padding: 50px; /* More generous padding for content */
}

/* Header */
.header {
	background-color: #ffffff;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 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: 'Montserrat', sans-serif;
	color: #007bff; /* Primary brand blue */
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	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: 'Lato', sans-serif;
	color: #343a40; /* Dark text for links */
	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: #007bff; /* Accent color underline */
	border-radius: 1px;
	transition: transform 0.3s ease;
}

.header__link:hover {
	color: #007bff; /* Primary blue 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: #343a40;
	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-section {
	padding: 60px 0;
	text-align: center;
	background-color: #e9ecef; /* Slightly darker background for hero */
	border-bottom: 1px solid #dee2e6;
}

.hero-section__container {
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	padding: 0 30px; /* Reset padding for hero container */
	max-width: 900px; /* Slightly narrower hero content */
}

.hero-section__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.8rem; /* Large, impactful title */
	color: #212529; /* Very dark text */
	margin-bottom: 30px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -1px;
	position: relative;
	padding-bottom: 20px;
}

.hero-section__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background-color: #007bff; /* Accent line */
	border-radius: 2px;
}

.hero-section__description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
	text-align: center; /* Center align hero description */
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Content Blocks (General for all H2-H3 sections) */
.content-block {
	width: 100%; /* Take full width to allow container styling */
	padding: 0; /* Container handles padding */
}

.content-block__container {
	padding: 50px; /* Consistent padding */
}

.content-block__title,
.faq-section__title,
.conclusion-section__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.8rem;
	color: #212529;
	margin-bottom: 40px;
	text-align: center;
	font-weight: 700;
	letter-spacing: -0.5px;
	position: relative;
	padding-bottom: 15px;
}

.content-block__title::after,
.faq-section__title::after,
.conclusion-section__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: #007bff;
	border-radius: 1.5px;
}

.content-block__subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	color: #007bff; /* Primary blue for H3 */
	margin-top: 45px; /* More space above H3 */
	margin-bottom: 25px;
	text-align: left;
	font-weight: 600;
	padding-left: 20px;
	border-left: 5px solid #007bff; /* Stronger accent line */
	line-height: 1.3;
}

.content-block__text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #343a40;
	margin-bottom: 20px;
	text-align: justify;
}

.content-block__image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 40px auto;
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* More pronounced shadow for images */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block__image:hover {
	transform: translateY(-5px); /* Soft lift on hover */
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.table-container {
	overflow-x: auto;
	margin: 40px 0;
	background-color: #ffffff; /* White background for table wrapper */
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for table container */
	padding: 25px;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 750px; /* Ensure table is wide enough to scroll on smaller screens */
	border-radius: 8px;
	overflow: hidden; /* For rounded corners */
}

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

.data-table th {
	background-color: #007bff; /* Primary blue header */
	color: #ffffff;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

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

.feature-list {
	list-style: none;
	margin: 30px 0 40px 0px;
	color: #343a40;
	background-color: #f8f9fa; /* List background matching body */
	border-radius: 8px;
	padding: 30px 40px;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03); /* Subtle inset shadow */
}

.feature-list li {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.7;
	padding-left: 35px;
	position: relative;
}

.feature-list li:last-child {
	margin-bottom: 0;
}

.feature-list li::before {
	content: '✓'; /* Checkmark bullet */
	color: #28a745; /* Green checkmark */
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1em;
}

/* Footer */
.footer {
	background-color: #343a40; /* Dark footer background */
	color: #000;
	text-align: center;
	padding: 25px 0;
	margin-top: 50px;
	border-top: 1px solid #495057;
}

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

/* Page Specific Styles */
/* FAQ Page (faq.html) - Accordion adjustments for showcase */
.faq-section__question {
	font-family: 'Montserrat', sans-serif;
	color: #212529;
	cursor: pointer;
	display: block;
	padding: 20px 25px;
	margin-bottom: 15px;
	background-color: #f8f9fa; /* Lighter background for FAQ items */
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow */
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
	padding-right: 50px; /* Space for icon */
	border-left: 4px solid transparent; /* Highlight border */
}

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

.faq-section__question.active {
	background-color: #ebf5ff; /* Light blue background when active */
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border-color: #007bff; /* Active border color */
	color: #0056b3;
}

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

.faq-section__question:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.faq-section__answer {
	padding: 20px 25px;
	display: none;
	background-color: #f8f9fa; /* Match question's default background */
	border-radius: 8px;
	margin-bottom: 25px;
	line-height: 1.7;
	color: #343a40;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); /* Very subtle inset shadow */
}

/* Contacts Page (contacts.html) */
.contacts-section__form {
	padding: 40px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin-top: 30px;
}

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

.contacts-section__form-group label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #212529;
	font-size: 1rem;
	font-family: 'Montserrat', 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: 1px solid #ced4da; /* Light border */
	border-radius: 5px;
	font-size: 1rem;
	background-color: #f8f9fa;
	color: #343a40;
	font-family: 'Lato', 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 {
	outline: none;
	border-color: #007bff; /* Accent border on focus */
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

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

.contacts-section__button {
	background-color: #007bff; /* Primary blue button */
	color: #ffffff;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); /* Button shadow */
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contacts-section__button:hover {
	background-color: #0056b3; /* Darker blue on hover */
	box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
	transform: translateY(-2px);
}

.contacts-section__button:active {
	transform: translateY(0);
	box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

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

	.hero-section__title {
		font-size: 3.2rem;
	}

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

	.content-block__subtitle {
		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: #ffffff;
		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 #dee2e6;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}

	.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 #e9ecef;
		width: 80%;
		margin: 0 auto;
		color: #343a40;
	}

	.header__link:hover {
		color: #007bff;
		border-color: #007bff;
	}

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

	.header__burger {
		display: flex;
	}

	.main {
		padding-top: 68px; /* Adjust main content padding */
		gap: 30px; /* Reduce gap between sections */
	}

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

	.hero-section__title {
		font-size: 2.8rem;
		margin-bottom: 25px;
	}

	.hero-section__title::after {
		width: 80px;
	}

	.hero-section__description {
		font-size: 1rem;
	}

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

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

	.content-block__subtitle {
		font-size: 1.4rem;
		margin-top: 35px;
		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 {
		padding: 25px 30px;
	}

	.feature-list li {
		font-size: 0.9rem;
		padding-left: 30px;
	}

	.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-section__container {
		padding: 25px 15px;
	}

	.hero-section__title {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}

	.hero-section__title::after {
		width: 60px;
		height: 3px;
	}

	.hero-section__description {
		font-size: 0.9rem;
	}

	.content-block__container {
		padding: 25px 15px;
		width: calc(100% - 30px);
	}

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

	.content-block__title::after,
	.faq-section__title::after,
	.conclusion-section__title::after {
		width: 50px;
		height: 2px;
	}

	.content-block__subtitle {
		font-size: 1.2rem;
		margin-top: 25px;
		padding-left: 10px;
		border-left-width: 3px;
	}

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

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

	.feature-list {
		padding: 20px 25px;
	}

	.feature-list li {
		font-size: 0.85rem;
		padding-left: 25px;
	}
}
