/* Global Styles */
:root {
	--bg-color: #f4ede8;
	--accent-1: #d72638;
	--accent-2: #277da7;
	--text-color: #222831;
	--ui-element: #fcbf49;
}

* {
	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;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: var(--bg-color);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent-2);
	text-decoration: none;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	cursor: pointer;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 1.5rem;
}

.nav-menu a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--accent-1);
}

/* Hero Section */
.hero {
	background-image: url('./img/9Om6M.jpg');
	background-size: cover;
	background-position: center center;
	height: 80vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	background-color: var(--accent-1);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: #be1c2d;
}

/* About Section */
.about {
	padding: 5rem 0;
}

.section-title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--accent-2);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.about-image {
	flex: 1;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
	flex: 1;
}

/* Benefits Section */
.benefits {
	padding: 5rem 0;
	background-color: #fff;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-card {
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-card h3 {
	color: var(--accent-2);
	margin-bottom: 1rem;
}

/* Services Section */
.services {
	padding: 5rem 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-content {
	padding: 1.5rem;
}

.service-content h3 {
	color: var(--accent-2);
	margin-bottom: 1rem;
}

.service-content p {
	margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
	padding: 5rem 0;
	background-color: #fff;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-card {
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-weight: bold;
	color: var(--accent-2);
}

/* FAQ Section */
.faq {
	padding: 5rem 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
}

.faq-question {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.faq-label {
	display: block;
	padding: 1rem;
	background-color: white;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	position: relative;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.faq-label::after {
	content: "+";
	position: absolute;
	right: 1rem;
	transition: transform 0.3s;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	background-color: white;
	border-radius: 0 0 5px 5px;
	padding: 0 1rem;
	transition: max-height 0.3s, padding 0.3s;
}

.faq-question:checked~.faq-label::after {
	content: "-";
}

.faq-question:checked~.faq-content {
	max-height: 500px;
	padding: 1rem;
	margin-bottom: 0.5rem;
}

/* Contact Form */
.contact {
	padding: 5rem 0;
	background-color: #fff;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--bg-color);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: #fff;
}

.form-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.form-checkbox input {
	margin-right: 0.5rem;
}

.form-submit {
	display: inline-block;
	background-color: var(--accent-1);
	color: white;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.form-submit:hover {
	background-color: #be1c2d;
}

/* Footer Styles */
footer {
	background-color: var(--text-color);
	color: white;
	padding: 3rem 0;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--ui-element);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--ui-element);
}

.footer-contact p {
	margin-bottom: 0.5rem;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you {
	background: white;
	margin: 8rem auto 5rem;
	max-width: 600px;
	padding: 2rem;
	border: 1px solid var(--accent-2);
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you h2 {
	color: var(--accent-2);
	margin-bottom: 1rem;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	padding: 1.5rem;
	border-radius: 10px;
	max-width: 400px;
	width: 90%;
	z-index: 9999;
	display: none;
}

.cookie-popup.show {
	display: block;
}

.cookie-popup p {
	margin-bottom: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-accept,
.cookie-decline {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.cookie-accept {
	background-color: var(--accent-2);
	color: white;
}

.cookie-accept:hover {
	background-color: #1e6a8d;
}

.cookie-decline {
	background-color: #eee;
}

.cookie-decline:hover {
	background-color: #ddd;
}

/* Policy Pages */
.policy-page {
	padding: 5rem 0;
}

.policy-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
	color: var(--accent-2);
	margin-bottom: 1.5rem;
}

.policy-container h2 {
	color: var(--accent-1);
	margin: 2rem 0 1rem;
}

.policy-container p {
	margin-bottom: 1rem;
}

.policy-container ul {
	margin: 1rem 0 1rem 2rem;
}

.policy-container li {
	margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
		font-size: 1.5rem;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--bg-color);
		flex-direction: column;
		text-align: center;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-menu li {
		margin: 0;
	}

	.nav-menu a {
		display: block;
		padding: 1rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.nav-toggle:checked~.nav-menu {
		max-height: 400px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}
}