:root {
	--primary-bg-color: #1a1a1a; /* Darker background */
	--secondary-bg-color: #2c2c2c; /* Slightly lighter for elements */
	--primary-text-color: #e0e0e0;
	--accent-color: #00aaff; /* A vibrant blue for accents */
	--accent-hover-color: #0088cc;
	--card-bg-color: #252525;
	--border-color: #444;
	--font-family: 'Roboto', sans-serif;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-family);
	background-color: var(--primary-bg-color);
	color: var(--primary-text-color);
	line-height: 1.6;
	font-size: 16px;
}

.container {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background-color: var(--secondary-bg-color);
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--accent-color);
	text-decoration: none;
}

.logo img {
	height: 40px;
	width: auto;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

nav ul li {
	margin-left: 20px;
}

nav ul li a {
	text-decoration: none;
	color: var(--primary-text-color);
	font-weight: 500;
	transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
	color: var(--accent-color);
}

.menu-toggle {
	display: none; /* Hidden by default, shown on mobile */
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--primary-text-color);
	margin: 5px 0;
	transition: all 0.3s ease-in-out;
}

/* Sections Common Styles */
section {
	padding: 60px 0;
	border-bottom: 1px solid var(--border-color);
}
section:last-child {
	border-bottom: none;
}

section h1,
section h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 2.5rem;
	color: var(--primary-text-color);
}
section h2 {
	font-size: 2.2rem;
}
section p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.content-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}

.content-wrapper .text-content {
	flex: 1;
	text-align: left;
}
.content-wrapper .text-content p {
	text-align: left;
	margin-left: 0;
}

.content-wrapper .image-content {
	flex: 1;
	text-align: center;
}

.content-wrapper .image-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .text-content h1 {
	text-align: left;
	font-size: 2.8rem;
	margin-bottom: 20px;
}
.hero-section .emoji {
	font-size: 3rem;
	display: block;
	margin-bottom: 10px;
}

.image-focus-section .text-content {
	order: 1; /* Text on left */
}
.image-focus-section .image-content {
	order: 2; /* Image on right */
}
/* Alternate layout for variety if needed - can be added as a class */
.image-focus-section.layout-reversed .text-content {
	order: 2;
}
.image-focus-section.layout-reversed .image-content {
	order: 1;
}

/* Cards Section */
.cards-section h2 {
	margin-bottom: 10px;
}
.cards-section > .container > p {
	/* The introductory paragraph for the section */
	margin-bottom: 40px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.card {
	background-color: var(--card-bg-color);
	padding: 25px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card img {
	width: 100%;
	height: auto; /* Fixed height for card images */
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 20px;
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--accent-color);
}

.card p {
	font-size: 1rem;
	text-align: center;
}

/* Primarily Text Section */
.primarily-text-section {
	position: relative; /* For background image positioning */
	overflow: hidden; /* To contain pseudo-elements or absolutely positioned images */
}

.primarily-text-section .intro-text {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 30px;
}
.myth-reality-content h3 {
	color: var(--accent-color);
	margin-top: 30px;
	margin-bottom: 5px;
	font-size: 1.4rem;
	text-align: center;
}
.myth-reality-content p {
	text-align: left;
	font-size: 1.05rem;
	margin-bottom: 15px;
}
.background-image-text-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.07; /* Subtle background image */
	z-index: -1;
	pointer-events: none;
}

/* FAQ Section */
#faq h2 {
	margin-bottom: 40px;
}
.faq-item {
	background-color: var(--secondary-bg-color);
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 6px;
	border-left: 4px solid var(--accent-color);
}
.faq-item h3 {
	font-size: 1.3rem;
	margin-top: 0;
	margin-bottom: 10px;
	color: var(--primary-text-color);
}
.faq-item p {
	font-size: 1rem;
	margin-bottom: 0;
	text-align: left;
}

/* Contact Form */
#contact h2 {
	margin-bottom: 20px;
}
#contact > .container > p {
	margin-bottom: 30px;
}
#contactForm {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--secondary-bg-color);
	padding: 30px;
	border-radius: 8px;
}
.form-group {
	margin-bottom: 20px;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}
.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: var(--primary-bg-color);
	color: var(--primary-text-color);
	font-size: 1rem;
	box-sizing: border-box; /* Important for 100% width */
}
.form-group textarea {
	resize: vertical;
}
.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 10px; /* Spacing between checkbox and label */
}
.form-group-checkbox input[type='checkbox'] {
	width: auto; /* Override default 100% width for inputs */
	margin-top: 0; /* Adjust vertical alignment if needed */
}
.form-group-checkbox label {
	margin-bottom: 0; /* Remove default label margin */
	font-weight: normal; /* Optional: make it normal weight */
	font-size: 0.9rem;
}
.cta-button {
	display: inline-block;
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
	cursor: pointer;
	font-size: 1.05rem;
}
.cta-button:hover {
	background-color: var(--accent-hover-color);
}
#formStatus {
	margin-top: 15px;
	text-align: center;
	font-weight: bold;
}

.text-center {
	text-align: center;
}

/* Footer */
footer {
	background-color: var(--secondary-bg-color);
	color: #aaa;
	padding: 40px 0 20px;
	text-align: center;
	border-top: 1px solid var(--border-color);
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
	text-align: left;
}
.footer-info,
.footer-links,
.footer-navigation {
	flex: 1;
	min-width: 200px; /* Adjusted min-width to better accommodate three columns */
}
.footer-info p,
.footer-links p,
.footer-navigation p {
	margin-bottom: 10px;
	font-size: 0.95rem;
}
.footer-info a {
	color: #bbb;
	text-decoration: none;
}
.footer-info a:hover {
	color: var(--accent-color);
}
.footer-links p:first-child,
.footer-navigation p:first-child {
	/* "Legal:" and "Navigation:" text */
	font-weight: bold;
	color: var(--primary-text-color);
	margin-bottom: 15px;
}
.footer-links ul,
.footer-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links ul li,
.footer-navigation ul li {
	margin-bottom: 8px;
}
.footer-links ul li a,
.footer-navigation ul li a {
	color: #aaa;
	text-decoration: none;
	font-size: 0.95rem;
}
.footer-links ul li a:hover,
.footer-navigation ul li a:hover {
	color: var(--accent-color);
}
.copyright {
	font-size: 0.9rem;
	margin-top: 20px;
	border-top: 1px solid var(--border-color);
	padding-top: 20px;
}

/* Cookie Consent Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(10, 10, 10, 0.95);
	color: var(--primary-text-color);
	padding: 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	z-index: 2000;
	display: none; /* Initially hidden */
	box-sizing: border-box;
	border-top: 1px solid var(--border-color);
}
.cookie-modal-content {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.cookie-modal-content p {
	margin: 0 0 15px 0;
	font-size: 0.95rem;
}
.cookie-modal-content a {
	color: var(--accent-color);
	text-decoration: underline;
}
.cookie-modal-buttons button {
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 10px 20px;
	margin: 0 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}
.cookie-modal-buttons button:hover {
	background-color: var(--accent-hover-color);
}
.cookie-modal-buttons button#rejectCookies {
	background-color: var(--secondary-bg-color);
	border: 1px solid var(--border-color);
}
.cookie-modal-buttons button#rejectCookies:hover {
	background-color: #444;
}

/* Form Submission Modal */
.form-submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
	display: none; /* Hidden by default */
	justify-content: center;
	align-items: center;
	z-index: 3000; /* Higher than cookie modal */
}

.form-submission-modal-content {
	background-color: var(--secondary-bg-color);
	padding: 30px 40px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	min-width: 250px;
	max-width: 90%;
}

.form-submission-modal-content p {
	margin-top: 15px;
	font-size: 1.1rem;
	font-weight: 500;
}

/* Basic CSS Spinner */
.spinner {
	border: 4px solid rgba(255, 255, 255, 0.3); /* Light grey border */
	border-left-color: var(--accent-color); /* Blue */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px auto; /* Center spinner */
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Animation Section: Initial States */
.animated-section {
	opacity: 0;
	transform: scale(0.95) translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-section.is-visible {
	opacity: 1;
	transform: scale(1) translateY(0);
}

/* Legal Pages Basic Styling */
.legal-page-content {
	padding: 40px 0;
}
.legal-page-content .container {
	max-width: 800px;
	background-color: var(--secondary-bg-color);
	padding: 30px;
	border-radius: 8px;
}
.legal-page-content h1 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--accent-color);
	text-align: left;
}
.legal-page-content h2 {
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 10px;
	color: var(--primary-text-color);
	text-align: left;
}
.legal-page-content p,
.legal-page-content ul li {
	margin-bottom: 15px;
	font-size: 1rem;
	text-align: left;
	color: var(--primary-text-color);
}
.legal-page-content ul {
	padding-left: 20px;
	text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
	.content-wrapper {
		flex-direction: column;
		text-align: center;
	}
	.content-wrapper .text-content,
	.content-wrapper .image-content {
		text-align: center;
		max-width: 600px; /* Limit width for better readability on wider mobile */
		margin-left: auto;
		margin-right: auto;
	}
	.content-wrapper .text-content p {
		text-align: center;
	}
	.hero-section .text-content h1 {
		text-align: center;
	}
	.image-focus-section .text-content,
	.image-focus-section.layout-reversed .text-content {
		order: 1;
	}
	.image-focus-section .image-content,
	.image-focus-section.layout-reversed .image-content {
		order: 2;
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 15px;
	}
	section h1,
	section h2 {
		font-size: 2rem;
	}
	section h2 {
		font-size: 1.8rem;
	}
	section p {
		font-size: 1rem;
	}

	nav ul {
		display: none; /* Hide nav links */
		flex-direction: column;
		position: absolute;
		top: 100%; /* Position below header */
		left: 0;
		width: 100%;
		background-color: var(--secondary-bg-color);
		padding: 10px 0;
		border-top: 1px solid var(--border-color);
	}
	nav ul.active {
		display: flex; /* Show when active */
	}
	nav ul li {
		margin: 10px 0;
		text-align: center;
	}
	.menu-toggle {
		display: block; /* Show hamburger icon */
	}
	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-info,
	.footer-links,
	.footer-navigation {
		text-align: center;
		margin-bottom: 20px;
	}
	.footer-links ul {
		display: inline-block; /* Center list items */
	}

	.cookie-modal-content {
		flex-direction: column;
	}
	.cookie-modal-buttons {
		margin-top: 15px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 80%;
		max-width: 250px;
	}
	.cookie-modal-buttons button {
		width: 100%;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 1.5rem;
	}
	section {
		padding: 40px 0;
	}
	section h1,
	section h2 {
		font-size: 1.8rem;
	}
	section h2 {
		font-size: 1.6rem;
	}
	.cards-grid {
		grid-template-columns: 1fr; /* Single column on very small screens */
	}
	.card img {
		height: 150px;
	}
	#contactForm {
		padding: 20px;
	}
}
