/* Base Styles */
:root {
	--primary: #283593;
	--accent: #ffca28;
	--secondary: #00acc1;
	--bg: #fafafa;
	--text: #212121;
	--light-text: #757575;
	--border: #e0e0e0;
	--shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

section[id] {
	scroll-margin-top: 80px;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--bg);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	color: var(--primary);
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1.5rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--accent);
	border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--primary);
	color: white;
}

.btn-primary:hover {
	background-color: #1a237e;
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.btn-secondary {
	background-color: var(--accent);
	color: var(--primary);
}

.btn-secondary:hover {
	background-color: #ffd54f;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* Header */
.main-header {
	background-color: white;
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 15px 0;
}

.main-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 1px;
}

.logo:hover {
	color: var(--primary);
}

/* Navigation */
.menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	width: 30px;
	height: 20px;
	position: relative;
	cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--primary);
	position: absolute;
	transition: all 0.3s ease;
}

.menu-icon {
	top: 50%;
	transform: translateY(-50%);
}

.menu-icon::before {
	top: -8px;
}

.menu-icon::after {
	bottom: -8px;
}

.main-nav ul {
	display: flex;
	list-style: none;
}

.main-nav li {
	margin-left: 30px;
}

.main-nav a {
	color: var(--text);
	font-weight: 500;
	padding: 5px;
	position: relative;
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.main-nav a:hover {
	color: var(--primary);
}

.main-nav a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	background-image: url('./img/UeneP.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	color: white;
	padding: 150px 0;
	margin-top: 60px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: white;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* About Section */
.about {
	padding: 6rem 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-features {
	list-style: none;
	margin-top: 20px;
}

.about-features li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.about-features li::before {
	content: '✓';
	color: var(--accent);
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
}

/* Services Section */
.services {
	padding: 6rem 0;
	background-color: #f5f5f5;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

.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.1);
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	margin-bottom: 15px;
}

.service-content p {
	margin-bottom: 20px;
	color: var(--light-text);
}

/* Advantages Section */
.advantages {
	padding: 6rem 0;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.advantage-item {
	text-align: center;
	padding: 30px 20px;
	border-radius: 8px;
	background-color: white;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantage-item h3 {
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.advantage-item p {
	color: var(--light-text);
	margin-bottom: 0;
}

/* Process Section */
.process {
	padding: 6rem 0;
	background-color: #f5f5f5;
}

.process-steps {
	max-width: 800px;
	margin: 0 auto;
}

.process-step {
	display: flex;
	margin-bottom: 40px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.process-step::before {
	content: '';
	position: absolute;
	left: 25px;
	top: 50px;
	bottom: -40px;
	width: 2px;
	background-color: var(--border);
}

.process-step:last-child::before {
	display: none;
}

.step-number {
	width: 50px;
	height: 50px;
	background-color: var(--accent);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 20px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.step-content {
	background-color: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	flex-grow: 1;
}

.step-content h3 {
	margin-bottom: 10px;
}

.step-content p {
	margin-bottom: 0;
	color: var(--light-text);
}

/* Testimonials Section */
.testimonials {
	padding: 6rem 0;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	padding: 30px;
}

.testimonial-content {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.testimonial-content::before {
	content: '"';
	font-size: 4rem;
	color: var(--accent);
	opacity: 0.3;
	position: absolute;
	top: -20px;
	left: -10px;
	font-family: serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	margin-bottom: 5px;
}

.author-info p {
	color: var(--light-text);
	margin-bottom: 0;
	font-size: 0.9rem;
}

/* FAQ Section */
.faq {
	padding: 6rem 0;
	background-color: #f5f5f5;
}

.faq-items {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 20px;
	cursor: pointer;
	position: relative;
	font-weight: 500;
	color: var(--primary);
}

.faq-question::after {
	content: '↓';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}

.faq-toggle:checked+.faq-question::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 20px 20px;
	color: var(--light-text);
}

/* Contact Section */
.contact {
	padding: 6rem 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-map {
	height: 300px;
	margin-top: 20px;
	border-radius: 8px;
	overflow: hidden;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.contact-details {
	list-style: none;
	margin-bottom: 30px;
}

.contact-details li {
	margin-bottom: 10px;
}

.contact-details address {
	font-style: normal;
}

.contact-form form {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border);
	border-radius: 4px;
	background-color: #f9f9f9;
	transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--secondary);
}

/* Style select options background */
select option {
	background-color: white;
	color: var(--text);
	padding: 10px;
}

.checkbox {
	display: flex;
	align-items: flex-start;
}

.checkbox input {
	width: auto;
	margin-right: 10px;
	margin-top: 5px;
}

.checkbox label {
	margin-bottom: 0;
	font-weight: normal;
}

.form-error {
	background-color: #ffebee;
	color: #c62828;
	padding: 10px 15px;
	border-radius: 4px;
	margin-top: 15px;
	font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
	padding: 8rem 0 5rem;
	text-align: center;
}

.thank-you-content {
	max-width: 600px;
	margin: 0 auto;
	background-color: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}



.thank-you h1 {
	margin-bottom: 20px;
}

.thank-you p {
	margin-bottom: 30px;
}

/* Policy Pages */
.policy-page {
	padding: 8rem 0 5rem;
}

.policy-content {
	background-color: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.policy-content h1 {
	margin-bottom: 30px;
	text-align: center;
}

.policy-content h2 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--primary);
	font-size: 1.5rem;
}

.policy-content h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--secondary);
	font-size: 1.2rem;
}

/* Footer */
.main-footer {
	background-color: #212121;
	color: white;
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-info h3 {
	color: white;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.footer-contact h4,
.footer-links h4 {
	color: var(--accent);
	margin-bottom: 20px;
}

.footer-contact ul,
.footer-links ul {
	list-style: none;
}

.footer-contact li,
.footer-links li {
	margin-bottom: 10px;
}

.footer-contact a,
.footer-links a {
	color: #bdbdbd;
}

.footer-contact a:hover,
.footer-links a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #424242;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: white;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	z-index: 9999;
	transition: bottom 0.5s ease;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.cookie-content p {
	margin-bottom: 0;
	margin-right: 20px;
}

#cookie-accept {
	background-color: var(--accent);
	color: var(--primary);
	border: none;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

#cookie-accept:hover {
	background-color: #ffd54f;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-info {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.menu-button {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: white;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
		box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	}

	.menu-toggle:checked~.main-nav {
		max-height: 500px;
	}

	.main-nav ul {
		flex-direction: column;
		padding: 20px;
	}

	.main-nav li {
		margin: 0 0 15px 0;
	}

	.menu-toggle:checked+.menu-button .menu-icon {
		background-color: transparent;
	}

	.menu-toggle:checked+.menu-button .menu-icon::before {
		transform: rotate(45deg);
		top: 0;
	}

	.menu-toggle:checked+.menu-button .menu-icon::after {
		transform: rotate(-45deg);
		bottom: 0;
	}

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 100px 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.cookie-content {
		flex-direction: column;
	}

	.cookie-content p {
		margin-bottom: 15px;
		margin-right: 0;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-info {
		grid-column: span 1;
	}

	.policy-content {
		padding: 30px 20px;
	}

	.thank-you-content {
		padding: 30px 20px;
	}
}