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

html {
	height: 100%;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.main {
	padding-top: 60px; /* Adjust based on header height */
	flex: 1;
}

.header__container,
.hero__container,
.content-section__container,
.faq-section__container,
.conclusion-section__container,
.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background-color: #2c3e50;
	color: #fff;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
}

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

.header__menu {
	list-style: none;
	display: flex;
	margin: 0; /* Override default ul margin */
}

.header__item {
	margin-left: 30px;
}

.header__link {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.header__link:hover {
	color: #3498db;
}

.header__burger {
	display: none; /* Hidden by default for desktop */
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
	position: relative;
	z-index: 1001; /* Ensure burger is above menu for click */
}

.header__burger span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin-bottom: 5px;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* 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 {
	background-color: #fff;
	padding: 60px 0 40px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero__title {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 20px;
}

.hero__description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
	text-align: justify;
}

/* Content Section (General for all H2-H3 sections) */
.content-section,
.faq-section,
.conclusion-section {
	background-color: #fff;
	padding: 40px 0;
	margin-top: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-section__title,
.faq-section__title,
.conclusion-section__title {
	font-size: 2rem;
	color: #2c3e50;
	margin-bottom: 25px;
	text-align: center;
}

.content-section__subtitle,
.faq-section__question {
	font-size: 1.5rem;
	color: #3498db;
	margin-top: 30px;
	margin-bottom: 15px;
	text-align: left;
}

.content-section__text,
.faq-section__answer {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 15px;
	text-align: justify;
}

.content-section__image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-wrapper {
	overflow-x: auto;
	margin: 20px 0;
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.security-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	min-width: 600px; /* Ensures table is scrollable on smaller screens */
}

.security-table th,
.security-table td {
	border: 1px solid #ddd;
	padding: 12px 15px;
	text-align: left;
}

.security-table th {
	background-color: #3498db;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.security-table tbody tr:nth-child(even) {
	background-color: #f2f2f2;
}

.security-table tbody tr:hover {
	background-color: #e0f2f7;
}

.feature-list,
.priority-list {
	list-style: disc;
	margin: 20px 0 20px 40px;
	color: #555;
}

.feature-list li,
.priority-list li {
	margin-bottom: 10px;
	font-size: 1rem;
	line-height: 1.6;
}

/* Horizontal Rule */
hr {
	border: none;
	border-top: 1px solid #ddd;
	margin: 40px auto;
	max-width: 80%;
}

/* Footer */
.footer {
	background-color: #2c3e50;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	margin-top: auto;
}

.footer__text {
	font-size: 0.9rem;
}

/* Page Specific Styles */
/* FAQ Page (faq.html) - If content is directly under H2, use .faq-section__question for H3 */
.faq-section__question {
	color: #2c3e50; /* Adjust H3 color for FAQ if desired */
	cursor: pointer;
	display: block;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	transition: background-color 0.3s ease;
}

.faq-section__question:hover {
	background-color: #f0f0f0;
}

.faq-section__answer {
	padding: 15px 0;
	display: none; /* Hidden by default */
}

/* Privacy Policy (privacy.html) - Assuming a similar structure to content-section */
/* Contacts Page (contacts.html) */
.contacts-section__form-group {
	margin-bottom: 20px;
}

.contacts-section__form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
}

.contacts-section__form-group input[type='text'],
.contacts-section__form-group input[type='email'],
.contacts-section__form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 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: #3498db;
	outline: none;
}

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

.contacts-section__button {
	background-color: #3498db;
	color: #fff;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
}

.contacts-section__button:hover {
	background-color: #2980b9;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
	.header__menu {
		margin-left: 10px; /* Reduce spacing for smaller screens */
	}

	.header__item {
		margin-left: 20px;
	}

	.hero__title {
		font-size: 2.2rem;
	}

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

	.content-section__subtitle,
	.faq-section__question {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.header__menu {
		display: none; /* Hide menu by default on mobile */
		flex-direction: column;
		position: absolute;
		top: 60px; /* Below header */
		left: 0;
		width: 100%;
		background-color: #2c3e50;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
		padding: 20px 0;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	}

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

	.header__item {
		margin: 15px 0;
	}

	.header__burger {
		display: flex; /* Show burger on mobile */
	}

	.hero {
		padding: 40px 0 30px;
	}

	.hero__title {
		font-size: 2rem;
	}

	.hero__description {
		font-size: 1rem;
	}

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

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

	.content-section__subtitle,
	.faq-section__question {
		font-size: 1.2rem;
	}

	.security-table {
		min-width: 0; /* Allow table to shrink if content is too wide */
	}
}

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

	.hero__title {
		font-size: 1.8rem;
	}

	.hero__description {
		font-size: 0.95rem;
	}

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

	.content-section__subtitle,
	.faq-section__question {
		font-size: 1.1rem;
	}

	.content-section__text,
	.faq-section__answer,
	.feature-list li,
	.priority-list li {
		font-size: 0.9rem;
	}

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