/* Reset and Base Styles */
:root {
	--primary-color: #007bff; /* A vibrant blue for primary actions */
	--secondary-color: #6c757d; /* A neutral grey for secondary elements */
	--accent-color: #17a2b8; /* A teal/cyan for accents and highlights */
	--light-accent-color: #20c997; /* A lighter green accent */

	--background-color: #121212; /* Very dark grey, almost black */
	--surface-color: #1e1e1e; /* Dark grey for cards, modals, etc. */
	--surface-color-hover: #2a2a2a; /* Slightly lighter for hover on surfaces */
	--border-color: #333333; /* Subtle borders */

	--text-primary-color: #e0e0e0; /* Light grey for primary text */
	--text-secondary-color: #b0b0b0; /* Medium grey for secondary text */
	--text-on-primary-color: #ffffff; /* White text on primary color backgrounds */

	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Roboto', sans-serif;

	--box-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
	--box-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.4);
	--border-radius: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-secondary);
	background-color: var(--background-color);
	color: var(--text-primary-color);
	line-height: 1.7;
	font-size: 16px;
	overflow-x: hidden; /* Prevent horizontal scroll */
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--font-primary);
	color: var(--text-primary-color);
	margin-bottom: 0.75em;
	line-height: 1.3;
}

h1 {
	font-size: 2.8rem;
	font-weight: 700;
}

h2 {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1em;
}

h3 {
	font-size: 1.6rem;
	font-weight: 600;
}

h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--light-accent-color);
}

p {
	margin-bottom: 1.25em;
	color: var(--text-secondary-color);
	font-size: 1rem; /* Ensure base paragraph size */
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	color: var(--light-accent-color);
	text-decoration: underline;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header */
header {
	background-color: rgba(30, 30, 30, 0.85); /* Semi-transparent surface color */
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid var(--border-color);
}

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

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

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

.logo:hover {
	color: var(--accent-color);
	text-decoration: none;
}

nav ul {
	display: flex;
	align-items: center;
}

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

nav ul li a {
	font-family: var(--font-primary);
	color: var(--text-secondary-color);
	font-weight: 400;
	font-size: 0.95rem;
	padding: 0.5rem 0.2rem;
	position: relative;
	text-decoration: none;
}

nav ul li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
	color: var(--text-primary-color);
	text-decoration: none;
}
nav ul li a:hover::after,
nav ul li a:focus::after {
	width: 100%;
}

.menu-toggle {
	display: none; /* Hidden by default, shown in media query */
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

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

/* Main Content & Sections */
main {
	padding-top: 100px; /* Adjust based on fixed header height */
}

section {
	padding: 60px 0;
	overflow: hidden; /* For animations */
}

section:nth-child(even) {
	background-color: var(--surface-color); /* Alternate section backgrounds */
}

.section-subtitle {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2.5em auto;
	color: var(--text-secondary-color);
	font-size: 1.1rem;
}

/* Hero Section */
#hero {
	background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)),
		url('../img/h1.webp') no-repeat center center/cover;
	color: #fff;
	padding: 100px 0;
	display: flex;
	align-items: center;
	min-height: 80vh; /* Make hero taller */
	text-align: center; /* Center hero content */
}

#hero .hero-content {
	max-width: 800px;
	margin: 0 auto;
}

#hero h1 {
	color: #fff;
	font-size: 3.5rem;
	margin-bottom: 0.5em;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
	color: var(
		--text-primary-color
	); /* Lighter than default secondary for contrast on bg */
	font-size: 1.2rem;
	margin-bottom: 1.5em;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--text-on-primary-color);
	padding: 14px 30px;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: background-color 0.3s ease, transform 0.2s ease;
	border: 2px solid transparent;
	box-shadow: var(--box-shadow-light);
}

.cta-button:hover,
.cta-button:focus {
	background-color: #0056b3; /* Darker shade of primary */
	color: var(--text-on-primary-color);
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: var(--box-shadow-medium);
}
.cta-button:active {
	transform: translateY(0);
}

.hero-image-container {
	display: none; /* Integrated into background for this design */
}

/* Services Section */
#services .cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 2em;
}

.card {
	background-color: var(--surface-color);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow-medium);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-color);
}

#services .card {
	/* Specific override if needed, or keep general .card */
	background-color: var(
		--surface-color
	); /* Ensure it's distinct from section bg if same */
}
section:nth-child(even) .card {
	/* If card is on a surface-color section */
	background-color: var(--background-color); /* Make it darker to stand out */
	border: 1px solid #444;
}

.card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card img {
	width: 100%; /* Control icon size */
	height: auto;
	margin-bottom: 1.5em;
	/* Consider filter for dark mode: filter: invert(1) hue-rotate(180deg) brightness(1.5) contrast(0.8); if icons are dark */
}

.card h3 {
	margin-bottom: 0.5em;
	color: var(--light-accent-color);
}

.card p {
	font-size: 0.95rem;
	flex-grow: 1; /* Make p take available space, useful for button alignment if any */
	color: var(--text-secondary-color);
}

/* Client Approach & Difference Sections (Image + Text Layouts) */
.approach-content,
.difference-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.approach-text,
.difference-text {
	padding-right: 20px; /* Add some space between text and image columns */
}
.difference-text {
	order: 1;
} /* Text on the right for #difference */
.difference-image-container {
	order: 0;
}

.approach-image-container img,
.difference-image-container img {
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow-medium);
}

/* Philosophy Section (Text Only) */
#philosophy {
	background-color: var(--surface-color);
}
#philosophy .container {
	max-width: 800px; /* Constrain width for readability */
	text-align: left;
}
#philosophy h2 {
	text-align: center;
}
#philosophy strong {
	color: var(--light-accent-color);
	font-weight: 600;
}

/* Contact Section */
#contact-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--background-color); /* Fallback */
}

.contact-section-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1; /* Make it very subtle */
	z-index: -1;
}
/* If no specific contact-bg, use a gradient */
#contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.5) 0%,
		rgba(18, 18, 18, 0.7) 100%
	);
	opacity: 0.8;
	z-index: 0;
}
#contact-section .container {
	position: relative; /* To ensure content is above the ::before pseudo-element */
	z-index: 1;
}

.contact-faq-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-form-container,
.faq-container {
	background-color: var(--surface-color);
	padding: 35px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow-medium);
	border: 1px solid var(--border-color);
}
.contact-form-container h2,
.faq-container h2 {
	text-align: left; /* Override default center for these titles */
	margin-top: 0;
	color: var(--text-primary-color);
}
.contact-form-container p:first-of-type {
	/* Subtitle for contact form */
	margin-bottom: 1.5em;
}

.form-group {
	margin-bottom: 1.5em;
}

.form-group label {
	display: block;
	margin-bottom: 0.5em;
	font-weight: 500;
	color: var(--text-secondary-color);
	font-size: 0.9rem;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	background-color: var(
		--background-color
	); /* Slightly darker than surface for input fields */
	color: var(--text-primary-color);
	font-family: var(--font-secondary);
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

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

.form-group-checkbox {
	display: flex;
	align-items: flex-start; /* Align items to the top for multi-line labels */
	margin-bottom: 1.5em;
}

.form-group-checkbox input[type='checkbox'] {
	margin-top: 0.25em; /* Align checkbox with the first line of text */
	margin-right: 0.75em;
	width: auto; /* Override default width for input fields */
	accent-color: var(--primary-color); /* Style the checkbox color */
	transform: scale(1.2); /* Make checkbox slightly larger */
}

.form-group-checkbox label {
	font-weight: normal; /* Normal weight for consent label */
	color: var(--text-secondary-color);
	font-size: 0.9rem;
	margin-bottom: 0; /* Remove default label margin */
	cursor: pointer;
}

.contact-form-container .cta-button {
	/* Button specific to contact form */
	width: 100%;
	padding: 15px;
}

.form-status-message {
	margin-top: 1em;
	font-weight: 500;
	padding: 0.8em;
	border-radius: var(--border-radius);
	text-align: center;
}
.form-status-message.error {
	background-color: rgba(220, 53, 69, 0.2);
	color: #dc3545;
	border: 1px solid #dc3545;
}
.form-status-message.success,
.form-status-message.pending {
	display: none;
}

.contact-details-inline {
	margin-top: 2.5em;
	padding-top: 1.5em;
	border-top: 1px solid var(--border-color);
}
.contact-details-inline h4 {
	margin-bottom: 0.5em;
}
.contact-details-inline p {
	font-size: 0.95rem;
	margin-bottom: 0.5em;
}

/* Form Submission Modal Styles */
.form-submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2001; /* Higher than cookie modal */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-submission-modal.visible {
	opacity: 1;
	visibility: visible;
}

.form-submission-modal .modal-content {
	background-color: var(--surface-color);
	padding: 30px 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow-medium);
	text-align: center;
	max-width: 450px;
	width: 90%;
	border: 1px solid var(--border-color);
}

.form-submission-modal h3 {
	font-family: var(--font-primary);
	color: var(--text-primary-color);
	margin-top: 0;
	margin-bottom: 1em;
}

.form-submission-modal p {
	color: var(--text-secondary-color);
	margin-bottom: 0;
	font-size: 1rem;
	min-height: 2em; /* To prevent layout shifts */
}

.form-submission-modal p.success {
	color: var(--light-accent-color);
}
.form-submission-modal p.error {
	color: #dc3545; /* Standard error red */
}

/* Simple CSS Spinner for Form Submission Modal */
.spinner {
	margin: 20px auto;
	width: 70px;
	text-align: center;
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: var(--accent-color);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* FAQ */
.faq-item {
	margin-bottom: 1em;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 1em;
}
.faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-question {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 0.8em 0;
	font-family: var(--font-primary);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-primary-color);
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded='true']::after {
	content: '−'; /* Using minus for expanded state */
	transform: translateY(-50%);
}
.faq-question[aria-expanded='true'] {
	color: var(--accent-color);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	padding: 0 0.5em;
}
.faq-answer p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-size: 0.95rem;
	color: var(--text-secondary-color);
}
.faq-question[aria-expanded='true'] + .faq-answer {
	/* max-height will be set by JS, or can be a large enough value like 500px if JS only toggles class */
	padding-top: 0.5em;
	padding-bottom: 1em;
}

/* Footer */
footer {
	background-color: #0a0a0a; /* Even darker for footer */
	color: var(--text-secondary-color);
	padding: 40px 0 20px;
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 2em;
	text-align: left;
}

.footer-contact h4,
.footer-links h4,
.footer-navigation h4 {
	font-family: var(--font-primary);
	color: var(--text-primary-color);
	margin-bottom: 1em;
	font-size: 1.1rem;
}

.footer-contact p {
	margin-bottom: 0.5em;
	font-size: 0.9rem;
}

.footer-links ul li,
.footer-navigation ul li {
	margin-bottom: 0.6em;
}

.footer-links ul li a,
.footer-navigation ul li a {
	color: var(--text-secondary-color);
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus,
.footer-navigation ul li a:hover,
.footer-navigation ul li a:focus {
	color: var(--accent-color);
	text-decoration: underline;
}

.copyright {
	font-size: 0.85rem;
	color: #777;
	margin-top: 2em;
	padding-top: 1em;
	border-top: 1px solid var(--border-color);
}

/* Cookie Consent Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--surface-color);
	padding: 25px;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
	z-index: 2000;
	display: none; /* Initially hidden, shown by JS */
	border-top: 1px solid var(--border-color);
}

.cookie-modal.show {
	display: block;
}

.cookie-modal .modal-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cookie-modal h3 {
	font-family: var(--font-primary);
	color: var(--text-primary-color);
	margin-bottom: 0.5em;
}

.cookie-modal p {
	color: var(--text-secondary-color);
	margin-bottom: 1.5em;
	font-size: 0.9rem;
}
.cookie-modal p a {
	color: var(--accent-color);
	font-weight: 500;
}
.cookie-modal p a:hover {
	color: var(--light-accent-color);
}

.modal-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.modal-buttons button {
	padding: 10px 25px;
	border: none;
	border-radius: var(--border-radius);
	font-family: var(--font-primary);
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-size: 0.9rem;
}

.btn-accept {
	background-color: var(--primary-color);
	color: var(--text-on-primary-color);
}

.btn-accept:hover {
	background-color: #0056b3;
}

.btn-reject {
	background-color: var(--secondary-color);
	color: var(--text-on-primary-color);
}

.btn-reject:hover {
	background-color: #545b62; /* Darker shade of secondary */
}

/* Animated Sections */
.animated-section {
	opacity: 0;
	transform: scale(0.95) translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Legal Pages Specific Styles */
.legal-page main {
	padding-top: 120px; /* Adjust if header height differs or for more space */
	padding-bottom: 60px;
}
.legal-page .container {
	background-color: var(--surface-color);
	padding: 30px 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow-medium);
	border: 1px solid var(--border-color);
}
.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 0.5em;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 0.3em;
	display: inline-block; /* To make border only wrap text */
}
.legal-page p,
.legal-page ul li {
	font-size: 0.95rem;
	color: var(--text-secondary-color);
}
.legal-page h2 {
	font-size: 1.5rem;
	color: var(--light-accent-color);
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 0.3em;
}
.legal-page ul {
	list-style: disc;
	padding-left: 25px;
	margin-bottom: 1em;
}
.legal-page ul li {
	margin-bottom: 0.5em;
}

/* Responsive Design */
@media (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}
	#hero h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2rem;
	}

	.approach-content,
	.difference-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.approach-text,
	.difference-text {
		padding-right: 0;
		order: 0 !important; /* Reset order for stacked layout */
	}
	.approach-image-container,
	.difference-image-container {
		margin-bottom: 2em;
		order: 1 !important;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.difference-image-container {
		margin-top: 2em; /* Add space if image comes first visually */
		margin-bottom: 0;
	}

	.contact-faq-container {
		grid-template-columns: 1fr;
	}
	#contact-section {
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 15px;
	}
	header {
		padding: 0.8rem 0;
	}
	main {
		padding-top: 80px;
	} /* Adjust if header height changes */

	nav {
		position: fixed;
		top: 0; /* Align with header or slightly below if header height is known */
		left: -100%; /* Hidden off-screen */
		width: 70%;
		max-width: 300px;
		height: 100vh;
		background-color: var(--surface-color);
		box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
		transition: left 0.35s ease-in-out;
		padding-top: 80px; /* Space for logo/close button if header content is also in menu */
		border-right: 1px solid var(--border-color);
		z-index: 999; /* Below header but above content */
	}
	header nav.active {
		/* target nav with class active */
		left: 0;
	}

	nav ul {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	nav ul li {
		margin-left: 0;
		margin-bottom: 1.5em;
		width: 100%;
	}
	nav ul li a {
		font-size: 1.1rem;
		padding: 0.8rem 0.5rem;
		display: block; /* Make links take full width for easier tapping */
	}
	nav ul li a::after {
		left: 0.5rem; /* Adjust underline position if padding changes */
	}

	.menu-toggle {
		display: block;
		z-index: 1001; /* Ensure it's above the nav panel when closed */
		position: relative; /* For stacking context if needed */
	}
	.menu-toggle.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	#hero {
		padding: 80px 0;
		min-height: 70vh;
	}
	#hero h1 {
		font-size: 2.5rem;
	}
	#hero p {
		font-size: 1.1rem;
	}
	.cta-button {
		padding: 12px 25px;
		font-size: 0.95rem;
	}

	#services .cards-container {
		grid-template-columns: 1fr; /* Stack cards on smaller screens */
		gap: 25px;
	}
	.card {
		padding: 25px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-contact,
	.footer-links {
		margin-bottom: 1em;
	}
	.footer-contact h4,
	.footer-links h4 {
		text-align: center;
	}

	.cookie-modal {
		padding: 20px;
	}
	.cookie-modal .modal-content {
		text-align: left; /* Better for readability on small screens */
	}
	.modal-buttons {
		flex-direction: column; /* Stack buttons */
		gap: 10px;
	}
	.modal-buttons button {
		width: 100%;
	}
	.legal-page main {
		padding-top: 100px;
	}
	.legal-page .container {
		padding: 20px;
	}
	.legal-page h1 {
		font-size: 1.3rem;
	}
	.legal-page h2 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.container {
		width: 95%;
	}
	h1 {
		font-size: 2rem;
	}
	#hero h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	#hero p {
		font-size: 1rem;
	}

	.contact-form-container,
	.faq-container {
		padding: 25px;
	}
}
