/* Global Styles */
:root {
	--color-primary: #1c1c1c;
	--color-accent: #3edbb2;
	--color-background: linear-gradient(to bottom, #fefcea, #f1da36);
	--color-card: #ffffff;
	--color-text: #1c1c1c;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-background);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	text-decoration: none;
	color: var(--color-primary);
	transition: var(--transition);
}

a:hover {
	color: var(--color-accent);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Buttons */
.btn {
	display: inline-block;
	background-color: var(--color-primary);
	color: white;
	padding: 10px 20px;
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: var(--color-accent);
	color: var(--color-primary);
}

.btn-secondary {
	display: inline-block;
	background-color: transparent;
	color: var(--color-primary);
	padding: 8px 16px;
	border: 1px solid var(--color-primary);
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	color: white;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

/* Cookie Consent */
.cookie-popup {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 15px;
	z-index: 1000;
	text-align: center;
}

.cookie-popup.show {
	display: block;
	animation: slideUp 0.5s forwards;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-content p {
	margin: 0;
}

.cookie-content a {
	color: var(--color-accent);
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

/* Header & Navigation */
.site-header {
	background-color: white;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 15px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-primary);
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
}

.bar {
	height: 3px;
	width: 100%;
	background-color: var(--color-primary);
	border-radius: 3px;
	transition: var(--transition);
}

.main-nav ul {
	display: flex;
	gap: 20px;
}

@media (max-width: 768px) {
	.menu-icon {
		display: flex;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: white;
		height: 0;
		overflow: hidden;
		transition: var(--transition);
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	.menu-toggle:checked~.main-nav {
		height: auto;
		padding: 20px 0;
	}

	.menu-toggle:checked~.menu-icon .bar:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.menu-toggle:checked~.menu-icon .bar:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.menu-icon .bar:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.main-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
}

/* Hero Section */
.hero-section {
	background-image: url('img/sEP4F.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0;
	position: relative;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
}

.hero-section h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
	padding: 80px 0;
	background-color: white;
}

.about-content {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

/* Services Section */
.services-section {
	padding: 80px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: var(--color-card);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
	padding: 0 20px;
}

.service-card h3 {
	margin-top: 20px;
}

.service-card a {
	display: inline-block;
	margin: 20px;
}

/* Advantages Section */
.advantages-section {
	padding: 80px 0;
	background-color: white;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.advantage-item {
	padding: 20px;
	background-color: var(--color-card);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process-section {
	padding: 80px 0;
}

.process-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.process-step {
	flex: 1;
	min-width: 200px;
	max-width: 250px;
	padding: 20px;
	background-color: var(--color-card);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
	position: relative;
}

.step-number {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color-accent);
	color: white;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background-color: white;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.faq-item input[type="checkbox"] {
	display: none;
}

.faq-title {
	display: block;
	padding: 15px;
	background-color: #f9f9f9;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.faq-title::after {
	content: '+';
	position: absolute;
	right: 15px;
	transition: var(--transition);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
	background-color: white;
}

.faq-content p {
	padding: 15px;
}

.faq-item input[type="checkbox"]:checked~.faq-title {
	background-color: var(--color-accent);
	color: white;
}

.faq-item input[type="checkbox"]:checked~.faq-title::after {
	content: '-';
}

.faq-item input[type="checkbox"]:checked~.faq-content {
	max-height: 500px;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background-color: var(--color-card);
	border-radius: var(--border-radius);
	padding: 20px;
	box-shadow: var(--shadow);
}

.testimonial-content {
	margin-bottom: 15px;
	font-style: italic;
}

.testimonial-author {
	text-align: right;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background-color: white;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-info,
.contact-form {
	flex: 1;
	min-width: 300px;
}

.map-container {
	margin-top: 20px;
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 300px;
}

.map-container iframe {
	border: 0;
	width: 100%;
	height: 100%;
}

.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="text"],
input[type="tel"],
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-family: inherit;
	font-size: 16px;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
	padding-right: 30px;
}

/* Style for the option background */
select option {
	background-color: var(--color-card);
	color: var(--color-text);
	padding: 10px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-group input[type="checkbox"] {
	margin-top: 5px;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
}

/* Footer */
.site-footer {
	background-color: var(--color-primary);
	color: white;
	padding: 40px 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 30px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
}

.footer-column h3 {
	margin-bottom: 15px;
	color: var(--color-accent);
}

.footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column a {
	color: white;
}

.footer-column a:hover {
	color: var(--color-accent);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.thank-you-container {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow);
	max-width: 600px;
	width: 90%;
	margin: 10rem auto 5rem;
}

/* Legal Pages */
.legal-section {
	padding: 60px 0;
}

.legal-content {
	background-color: white;
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow);
}

.legal-content h1 {
	margin-bottom: 20px;
}

.legal-content h2 {
	margin-top: 30px;
	margin-bottom: 15px;
	text-align: left;
	font-size: 1.5rem;
}

.legal-content h3 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.legal-content ul,
.legal-content ol {
	margin: 15px 0;
	padding-left: 20px;
}

.legal-content li {
	margin-bottom: 5px;
}

.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
}

.cookie-table th,
.cookie-table td {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: left;
}

.cookie-table th {
	background-color: #f9f9f9;
}

/* Error Page */
.error-container {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.error-content {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow);
	max-width: 600px;
	width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.hero-section .container {
		min-height: 40vh;
	}

	.about-section,
	.services-section,
	.advantages-section,
	.process-section,
	.faq-section,
	.testimonials-section,
	.contact-section {
		padding: 60px 0;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.hero-section .container {
		min-height: 30vh;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.about-section,
.services-section,
.advantages-section,
.process-section,
.faq-section,
.testimonials-section,
.contact-section {
	animation: fadeIn 1s ease-in-out;
}