/* Global Styles */
:root {
	--primary-color: #f1efe8;
	--accent-color-1: #ff6b6b;
	--accent-color-2: #4ecdc4;
	--text-color: #222;
	--white: #fff;
	--light-bg: #f8f8f8;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
	font-family: 'Open Sans', Arial, sans-serif;
}

body {
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

section[id] {
	scroll-margin-top: 40px;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

section {
	padding: 4rem 0;
}

section:nth-child(odd) {
	background-color: var(--white);
}

section:nth-child(even) {
	background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
	color: var(--text-color);
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

h2:after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--accent-color-1);
	margin: 0.8rem auto;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--accent-color-1);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-color-2);
}

.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: var(--accent-color-1);
	color: var(--white);
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
	background-color: var(--accent-color-2);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.text-center {
	text-align: center;
}

/* Header Styles */
header {
	background-color: rgba(255, 255, 255, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-color);
}

.logo span {
	color: var(--accent-color-1);
}

/* Burger Menu (CSS-only) */
.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 2;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--text-color);
	transition: all 0.3s ease;
}

.menu-btn:before {
	top: 0;
}

.menu-btn span {
	top: 9px;
}

.menu-btn:after {
	bottom: 0;
}

.menu-toggle:checked~.menu-btn:before {
	transform: rotate(45deg);
	top: 9px;
}

.menu-toggle:checked~.menu-btn span {
	opacity: 0;
}

.menu-toggle:checked~.menu-btn:after {
	transform: rotate(-45deg);
	bottom: 9px;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 2rem;
}

.nav-menu a {
	color: var(--text-color);
	font-weight: 600;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--accent-color-1);
	transition: width 0.3s;
}

.nav-menu a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 80vh;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
}

.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;
	text-align: center;
	color: var(--white);
	padding: 0 1rem;
}

.hero-content h1 {
	font-size: 3rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	animation: fadeInDown 1s ease;
}

.hero-content p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 2rem;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* About Section */
.about-container {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.about-img {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-img img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.about-img:hover img {
	transform: scale(1.03);
}

.about-content {
	flex: 1;
}

/* Benefits Section */
.benefits-container {
	margin-top: 2rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
}

.benefit-card h3 {
	margin-bottom: 1rem;
}

/* Services Section */
.services-container {
	margin-top: 2rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 1.5rem;
}

.service-card h3 {
	margin-bottom: 1rem;
}

/* How We Work Section */
.work-process {
	margin-top: 2rem;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step {
	text-align: center;
	position: relative;
}

.step-number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color-1);
	color: var(--white);
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1.5rem;
}

.step h3 {
	margin-bottom: 1rem;
}

/* For the connecting lines between steps */
.process-steps .step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 30px;
	right: -50%;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color-1);
	z-index: -1;
}

/* Testimonials Section */
.testimonials-container {
	margin-top: 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 2rem;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 4rem;
	color: var(--accent-color-1);
	opacity: 0.2;
	line-height: 1;
}

.testimonial-content {
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: bold;
}

/* Contact Form Section */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 2rem;
}

.form-container {
	background-color: var(--white);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-control:focus {
	border-color: var(--accent-color-1);
	outline: none;
}

select.form-control option {
	background-color: var(--white);
	color: var(--text-color);
	padding: 10px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 6px;
}

.checkbox-group label {
	font-size: 0.9rem;
}

.checkbox-group a {
	text-decoration: underline;
}

.error-text {
	color: red;
	font-size: 0.9rem;
	margin-top: 0.3rem;
}

.contact-info {
	background-color: #3f706c;
	color: var(--white);
	border-radius: 10px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-info h3 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.contact-item {
	display: flex;
	margin-bottom: 1.5rem;
}

.contact-icon {
	margin-right: 1rem;
	font-size: 1.2rem;
}

/* Footer Styles */
footer {
	background-color: #222;
	color: var(--white);
	padding: 3rem 0 1rem;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-col {
	margin-bottom: 2rem;
}

.footer-col h3 {
	color: var(--white);
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-col h3:after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background-color: var(--accent-color-1);
	margin: 0.5rem 0;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #ccc;
	transition: all 0.3s;
}

.footer-links a:hover {
	color: var(--accent-color-1);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	margin-top: 1rem;
	text-align: center;
	font-size: 0.9rem;
	color: #ccc;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: rgba(34, 34, 34, 0.95);
	color: var(--white);
	padding: 1rem 2rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: bottom 0.5s ease;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-text {
	flex: 1;
	padding-right: 1rem;
}

.cookie-text p {
	margin-bottom: 0;
}

.cookie-btn {
	background-color: var(--accent-color-1);
	color: var(--white);
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s;
	white-space: nowrap;
}

.cookie-btn:hover {
	background-color: var(--accent-color-2);
}

/* Policy Page Styles */
.policy-page {
	padding: 4rem 0;
}

.policy-container {
	background-color: var(--white);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
	margin-bottom: 2rem;
	text-align: center;
}

.policy-section {
	margin-bottom: 2rem;
}

.policy-section h2 {
	text-align: left;
	margin-bottom: 1rem;
}

.policy-section h2:after {
	margin: 0.5rem 0;
}

/* Thank You Page */
.thankyou-section {
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.thankyou-container {
	background-color: var(--white);
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 8rem auto 5rem;
	max-width: 700px;
}

.thankyou-container h1 {
	color: var(--accent-color-1);
	margin-bottom: 1.5rem;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 991px) {
	.about-container {
		flex-direction: column;
		gap: 2rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	/* Fix for connecting lines in process steps */
	.process-steps .step:not(:last-child)::after {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.menu-btn {
		display: block;
	}

	.menu-toggle:checked~.nav-menu {
		right: 0;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		flex-direction: column;
		background-color: var(--white);
		width: 70%;
		height: 100%;
		justify-content: center;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1;
		padding: 4rem 2rem;
	}

	.nav-menu li {
		margin: 1rem 0;
		text-align: center;
	}
}

/* FAQ Section Styles (Using CSS-only for accordion) */
.faq-section {
	padding: 4rem 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	background-color: var(--white);
	padding: 1rem;
	cursor: pointer;
	position: relative;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question:after {
	content: '+';
	font-size: 1.5rem;
	color: var(--accent-color-1);
}

.faq-toggle {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	background-color: var(--white);
	transition: max-height 0.3s ease;
}

.faq-toggle:checked~.faq-content {
	max-height: 1000px;
	padding: 1rem;
}

.faq-toggle:checked+.faq-question:after {
	content: '−';
}