:root {
	--primary-bg: #1a1a1a; /* Darker gray for main background */
	--secondary-bg: #2c2c2c; /* Lighter gray for elements like cards, header/footer */
	--text-color: #e0e0e0; /* Light gray for text */
	--accent-color: #00bcd4; /* Cyan accent */
	--accent-hover-color: #0097a7;
	--border-color: #444;
	--card-bg: #333333;
	--button-bg: var(--accent-color);
	--button-text: #ffffff;
	--button-hover-bg: var(--accent-hover-color);
	--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: var(--text-color);
	line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

/* Burger Menu Button */
.burger-menu-button {
	display: none; /* Hidden by default, shown in media query */
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px; /* Easier to tap */
	z-index: 1005; /* Ensure it's above other header content if necessary */
}

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

.burger-menu-button.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.burger-menu-button.active span:nth-child(2) {
	opacity: 0;
}

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

/* Main Content & Sections */
main {
	padding-top: 2rem; /* Give space below sticky header */
}

section {
	padding: 60px 0;
	border-bottom: 1px solid var(--border-color);
}

section:last-child {
	border-bottom: none;
}

section h1,
section h2 {
	color: var(--accent-color);
	margin-bottom: 1rem;
	text-align: center;
}

section h1 {
	font-size: 2.8rem;
}

section h2 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
}
section p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #c0c0c0; /* Slightly lighter text for paragraphs */
}

.cta-button {
	display: inline-block;
	background-color: var(--button-bg);
	color: var(--button-text);
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	transition: background-color 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	background-color: var(--button-hover-bg);
}

/* Hero Section */
#hero {
	text-align: center;
}
#hero .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.hero-content {
	max-width: 700px;
}
.hero-content h1 {
	color: #fff; /* Brighter for hero title */
}
.hero-image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Full Width Section (for images stretching) */
.full-width-section .container {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.full-width-section .section-content,
.full-width-section .hero-content {
	flex: 1;
	text-align: left;
}
.full-width-section .section-content h2,
.full-width-section .hero-content h1 {
	text-align: left;
}

.full-width-section .section-image-container,
.full-width-section .hero-image-container {
	flex: 1;
	max-width: 50%;
}

.full-width-section img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.centered-image img {
	display: block;
	margin: 20px auto;
	max-width: 80%; /* Control size of centered images */
	border-radius: 8px;
}

/* Text Only Section */
.text-only-section .container {
	max-width: 800px; /* Narrower for readability */
}
.text-only-section p {
	text-align: justify;
}

/* Cards Section */
.cards-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.card {
	background-color: var(--card-bg);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	width: calc(33.333% - 20px); /* Adjust for gap */
	min-width: 280px; /* Minimum card width */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card img {
	width: 100%; /* Icon size */
	height: auto;
	margin-bottom: 15px;
	object-fit: contain;
}

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

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	margin-bottom: 10px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	background-color: var(--secondary-bg);
}
.faq-question {
	background-color: transparent;
	color: var(--text-color);
	border: none;
	padding: 15px;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}
.faq-answer {
	padding: 0 15px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
	max-height: 300px; /* Adjust as needed */
	padding: 15px;
}
.faq-answer p {
	margin-bottom: 0;
}

/* Contact Form */
#contactForm {
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	background-color: var(--secondary-bg);
	border-radius: 8px;
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	display: block;
	margin-bottom: 5px;
	color: var(--text-color);
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--border-color);
	background-color: var(--primary-bg);
	color: var(--text-color);
	border-radius: 4px;
	box-sizing: border-box;
}
.form-group textarea {
	resize: vertical;
}
.form-group-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.form-group-checkbox input[type='checkbox'] {
	margin-right: 10px;
	width: auto; /* Override width 100% from general input styles */
	accent-color: var(--accent-color); /* Style the checkbox color */
}
.form-group-checkbox label {
	margin-bottom: 0; /* Reset margin from general label style */
	font-size: 0.9rem;
	color: #c0c0c0;
}
.form-status {
	margin-top: 15px;
	font-weight: bold;
}
.contact-details {
	text-align: center;
	margin-top: 40px;
}
.contact-details h3 {
	color: var(--accent-color);
}
.contact-details a {
	color: var(--accent-color);
	text-decoration: none;
}
.contact-details a:hover {
	text-decoration: underline;
}

/* Footer */
footer {
	background-color: var(--secondary-bg);
	color: #aaa;
	padding: 40px 0 20px;
	border-top: 1px solid var(--border-color);
	font-size: 0.9rem;
}
.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}
.footer-col {
	flex: 1;
	min-width: 200px;
	margin-bottom: 20px;
}
.footer-col h4 {
	color: var(--text-color);
	margin-bottom: 10px;
	font-size: 1.1rem;
}
.footer-col ul {
	list-style: none;
	padding: 0;
}
.footer-col ul li a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-col ul li a:hover {
	color: var(--accent-color);
}
.copyright {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

/* Cookie Consent Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	color: var(--text-color);
	padding: 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
	z-index: 2000;
	display: none; /* Hidden by default */
	text-align: center;
}
.cookie-modal-content {
	max-width: 800px;
	margin: 0 auto;
}
.cookie-modal p {
	margin: 0 0 15px 0;
	font-size: 0.95rem;
}
.cookie-modal a {
	color: var(--accent-color);
	text-decoration: underline;
}
.cookie-buttons button {
	background-color: var(--button-bg);
	color: var(--button-text);
	border: none;
	padding: 10px 20px;
	margin: 0 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.cookie-buttons button:hover {
	background-color: var(--button-hover-bg);
}
.cookie-buttons button#declineCookies {
	background-color: #555;
}
.cookie-buttons button#declineCookies:hover {
	background-color: #777;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
	.full-width-section .container {
		flex-direction: column;
	}
	.full-width-section .section-image-container,
	.full-width-section .hero-image-container {
		max-width: 100%;
		margin-top: 1rem;
	}
	.full-width-section .section-content,
	.full-width-section .hero-content {
		text-align: center; /* Center text on smaller screens */
	}
	.full-width-section .section-content h2,
	.full-width-section .hero-content h1 {
		text-align: center;
	}
}

@media (max-width: 768px) {
	header nav {
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		margin-bottom: 0; /* Reset from previous mobile style */
	}

	header ul#main-nav-menu {
		/* Target the specific nav menu for mobile */
		display: none; /* Hidden by default, toggled by JS */
		flex-direction: column;
		position: absolute;
		top: 100%; /* Position below the header (header height) */
		left: 0;
		width: 100%;
		background-color: var(--secondary-bg);
		padding: 0.5rem 0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
		border-top: 1px solid var(--border-color);
		z-index: 999; /* Below header but above content */
	}

	header ul#main-nav-menu.mobile-nav-active {
		display: flex; /* Show when active */
	}

	header ul#main-nav-menu li {
		margin: 0;
		width: 100%;
		text-align: center;
	}
	header ul#main-nav-menu li a {
		display: block;
		padding: 0.8rem 1rem;
		width: 100%;
		box-sizing: border-box;
		border-bottom: 1px solid var(--border-color);
	}
	header ul#main-nav-menu li:last-child a {
		border-bottom: none;
	}
	header ul#main-nav-menu li a:hover {
		background-color: var(--primary-bg);
	}

	.burger-menu-button {
		display: block; /* Show burger on mobile */
	}

	section h1 {
		font-size: 2.2rem;
	}
	section h2 {
		font-size: 1.8rem;
	}

	.cards-container {
		flex-direction: column;
		align-items: center;
	}
	.card {
		width: 90%;
		max-width: 400px; /* Max card width on mobile */
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 0;
	}
	.footer-col {
		margin-bottom: 20px;
		min-width: 100%; /* Make columns full width on small screens */
	}
}

@media (max-width: 480px) {
	.cookie-buttons {
		display: flex;
		flex-direction: column;
	}
	.cookie-buttons button {
		margin: 5px 0;
		width: 100%;
	}
}

/* Legal Pages Simple Styling */
.legal-page-container {
	padding: 40px 0;
	min-height: 60vh;
}
.legal-page-container .container {
	max-width: 800px;
}
.legal-page-container h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--accent-color);
	text-align: center;
}
.legal-page-container h2 {
	font-size: 1.5rem;
	color: var(--text-color);
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}
.legal-page-container p,
.legal-page-container li {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: #c0c0c0;
}
.legal-page-container ul {
	padding-left: 20px;
}
