/* Global styles */
:root {
	--background: #F8FAFC;
	--text: #1E293B;
	--accent-1: #FB923C;
	--accent-2: #FACC15;
	--block-bg: #E0F2FE;
	--heading: #0F172A;
}

* {
	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(--background);
	color: var(--text);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading);
	margin-bottom: 1rem;
}

a {
	color: var(--accent-1);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-2);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.btn {
	display: inline-block;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	color: #fff;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
}

section {
	padding: 5rem 0;
}

/* Header styles */
header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--heading);
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	cursor: pointer;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
}

.nav-menu li {
	margin-left: 1.5rem;
}

.nav-menu a {
	color: var(--text);
	font-weight: 500;
}

.nav-menu a:hover {
	color: var(--accent-1);
}

/* Hero section */
.hero {
	background-image: url('img/MbMCh.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	position: relative;
	min-height: 80vh;
	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.6);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* About section */
.about {
	background-color: #fff;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services {
	background-color: var(--background);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
	color: var(--heading);
	margin: 1rem 0;
}

/* Benefits section */
.benefits {
	background-color: var(--block-bg);
}

.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Process section */
.process {
	background-color: #fff;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--accent-1), var(--accent-2));
	left: 50%;
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	padding: 2rem 0;
}

.timeline-content {
	width: 45%;
	padding: 1.5rem;
	background-color: var(--background);
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-left: auto;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Testimonials section */
.testimonials {
	background-color: var(--block-bg);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	font-size: 5rem;
	position: absolute;
	top: 10px;
	left: 10px;
	color: rgba(251, 146, 60, 0.1);
	font-family: serif;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.client-name {
	font-weight: bold;
}

/* FAQ section */
.faq {
	background-color: #fff;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	display: block;
	padding: 1.2rem;
	background-color: var(--block-bg);
	color: var(--heading);
	cursor: pointer;
	position: relative;
	font-weight: 500;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	position: absolute;
	right: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}

.faq-checkbox {
	display: none;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #fff;
	padding: 0 1.2rem;
}

.faq-checkbox:checked+.faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-checkbox:checked~.faq-answer {
	max-height: 500px;
	padding: 1.2rem;
}

/* Contact form section */
.contact {
	background-color: var(--block-bg);
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: #fff;
	padding: 2rem;
	border-radius: 10px;
	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: 500;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-1);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.checkbox-group input {
	margin-top: 0.3rem;
}

/* Footer */
footer {
	background-color: var(--heading);
	color: #fff;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #ccc;
}

.footer-links a:hover {
	color: var(--accent-2);
}

.contact-info {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.copyright {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: #ccc;
}

/* Cookie popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	max-width: 400px;
	width: 90%;
	display: none;
}

.cookie-popup.active {
	display: block;
	animation: slideUp 0.5s forwards;
}

.cookie-popup p {
	margin-bottom: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
}

.accept-btn {
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: #fff;
}

.info-btn {
	background-color: #f1f1f1;
	color: var(--text);
}

/* Policy pages */
.policy-container {
	max-width: 800px;
	margin: 8rem auto 5rem;
	padding: 2rem;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
	margin-bottom: 2rem;
	text-align: center;
}

.policy-container h2 {
	margin: 2rem 0 1rem;
}

.policy-container p,
.policy-container ul {
	margin-bottom: 1rem;
}

.policy-container ul {
	padding-left: 2rem;
}

/* Thank you page */
.thanks-container {
	max-width: 800px;
	margin: 8rem auto 5rem;
	padding: 3rem 2rem;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.thanks-container h1 {
	margin-bottom: 1.5rem;
	color: var(--heading);
}

.thanks-container p {
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

/* Animations */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translate(-50%, 20px);
	}

	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* Responsive styles */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.timeline::before {
		left: 30px;
	}

	.timeline-content {
		width: calc(100% - 60px);
		margin-left: 60px !important;
	}

	.timeline-item::after {
		left: 30px;
	}
}

@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
		font-size: 1.5rem;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #fff;
		flex-direction: column;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-toggle:checked~.nav-menu {
		max-height: 350px;
		padding: 1rem;
	}

	.nav-menu li {
		margin: 0;
	}

	.nav-menu a {
		display: block;
		padding: 0.5rem 1.5rem;
		border-bottom: 1px solid #f1f1f1;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	section {
		padding: 3rem 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.policy-container,
	.thanks-container {
		padding: 1.5rem;
	}
}