/* Global Styles */
:root {
	--primary-gradient-start: #32B3C9;
	--primary-gradient-end: #FFD3A5;
	--text-color: #333333;
	--accent-green: #A1C935;
	--accent-red: #F35C4A;
	--button-color: #D72678;
	--decor-color: #BDA0CB;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
	font-family: Arial, sans-serif;
}

body {
	background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
	color: var(--text-color);
	min-height: 100vh;
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--button-color);
	transition: color 0.3s;
}

a:hover {
	color: var(--accent-green);
}

img {
	max-width: 100%;
	height: auto;
}

button,
.btn {
	background-color: var(--button-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-weight: bold;
}

button:hover,
.btn:hover {
	background-color: var(--accent-green);
}

/* Header Styles */
header {
	background-color: rgba(255, 255, 255, 0.9);
	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 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--button-color);
}

/* Navigation */
nav ul {
	display: flex;
	list-style: none;
}

nav li {
	margin-left: 20px;
}

nav a {
	color: var(--text-color);
	font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	cursor: pointer;
}

#menu-toggle {
	display: none;
}

/* Hero Section */
.hero {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
	max-width: 700px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* Section Styling */
section {
	padding: 5rem 0;
}

section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

/* Services, Benefits & Testimonials Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.card {
	background-color: white;
	border-radius: 8px;
	padding: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
}

.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.card-content {
	padding: 1.5rem;
}

.card:hover {
	transform: translateY(-5px);
}

.card-content h3 {
	color: var(--button-color);
	margin-bottom: 1rem;
}

/* How We Work Section */
.steps {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.step {
	flex: 0 0 calc(33.333% - 20px);
	margin-bottom: 2rem;
	background-color: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.step-number {
	background-color: var(--accent-green);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	position: absolute;
	top: -20px;
	left: calc(50% - 20px);
}

/* Form Section */
.form-section {
	background-color: white;
	border-radius: 8px;
	padding: 3rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
}

form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

label {
	margin-bottom: 5px;
	font-weight: bold;
}

input,
select,
textarea {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 5px;
}

/* FAQ Section */
.faq {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1rem;
	display: block;
	font-weight: bold;
	cursor: pointer;
	background-color: rgba(50, 179, 201, 0.1);
	position: relative;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 1rem;
	transition: transform 0.3s;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s;
	padding: 0 1rem;
}

.faq-toggle {
	display: none;
}

.faq-toggle:checked+.faq-question::after {
	transform: rotate(45deg);
}

.faq-toggle:checked+.faq-question+.faq-answer {
	max-height: 500px;
	padding: 1rem;
}

/* Footer */
footer {
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.footer-col h3 {
	color: var(--primary-gradient-end);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	color: white;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 20px;
	display: none;
	z-index: 9999;
}

.cookie-popup.active {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-text {
	flex: 1;
	padding-right: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

/* Policy Pages */
.policy-container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	margin: 5rem auto;
	max-width: 900px;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* Thank You Page */
.thank-you-container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	margin: 5rem auto;
	max-width: 700px;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.header-container {
		padding: 1rem;
	}

	.hamburger {
		display: block;
		width: 30px;
		height: 20px;
		position: relative;
		z-index: 1001;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 3px;
		background-color: var(--text-color);
		position: absolute;
		transition: all 0.3s;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 8px;
	}

	.hamburger span:nth-child(3) {
		top: 16px;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background-color: white;
		box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
		transition: right 0.3s;
		z-index: 1000;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	nav ul {
		flex-direction: column;
		padding: 0 2rem;
	}

	nav li {
		margin: 1rem 0;
	}

	#menu-toggle:checked~.hamburger span:nth-child(1) {
		transform: rotate(45deg);
		top: 8px;
	}

	#menu-toggle:checked~.hamburger span:nth-child(2) {
		opacity: 0;
	}

	#menu-toggle:checked~.hamburger span:nth-child(3) {
		transform: rotate(-45deg);
		top: 8px;
	}

	#menu-toggle:checked~nav {
		right: 0;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.step {
		flex: 0 0 100%;
	}

	.form-section {
		padding: 1.5rem;
	}
}