/* === GLOBAL STYLES === */
:root {
	--background: #f5f9ff;
	--accent-1: #004aad;
	--accent-2: #6fffe9;
	--text: #0e1c36;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

a {
	color: var(--accent-1);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: var(--accent-2);
}

.container {
	width: auto;

	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: white;
	font-weight: 600;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: transform 0.3s, opacity 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
	opacity: 0.95;
	color: white;
}

.section-padding {
	padding: 5rem 0;
}

/* === HEADER === */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--accent-1);
	text-transform: lowercase;
}

/* Navigation */
nav ul {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

nav ul li a {
	color: var(--text);
	font-weight: 600;
}

nav ul li a:hover {
	color: var(--accent-1);
}

/* Burger Menu */
.burger-menu {
	display: none;
}

#burger-toggle {
	display: none;
}

.burger-icon {
	display: none;
	cursor: pointer;
	padding: 10px;
}

.burger-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--accent-1);
	margin: 5px 0;
	transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
	position: relative;
	height: 80vh;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	color: white;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 28, 54, 0.7);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* === ABOUT SECTION === */
.about-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* === BENEFITS SECTION === */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
	gap: 20px;
}

.benefit-card {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-card h3 {
	color: var(--accent-1);
	margin-bottom: 1rem;
}

/* === SERVICES SECTION === */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card-image {
	height: 200px;
	overflow: hidden;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.service-card:hover .service-card-image img {
	transform: scale(1.05);
}

.service-card-content {
	padding: 1.5rem;
}

.service-card h3 {
	color: var(--accent-1);
	margin-bottom: 1rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-card {
	background: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 1rem;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-weight: 600;
	color: var(--accent-1);
}

/* === FORM SECTION === */
.form-section {
	background-color: white;
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
}

.form-title {
	text-align: center;
	margin-bottom: 2rem;
}

.contact-form .form-group {
	margin-bottom: 1.5rem;
}

.contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--accent-1);
	outline: none;
}

.contact-form select {
	appearance: none;
	background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
	background-position: right 10px top 50%;
	background-color: white;
}

.contact-form select option {
	background-color: var(--background);
	padding: 10px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
	margin-top: 4px;
}

.form-button {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.3s;
}

.form-button:hover {
	opacity: 0.9;
}

/* === FAQ SECTION === */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	background: white;
	padding: 1.2rem;
	cursor: pointer;
	position: relative;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-left: 4px solid var(--accent-1);
}

.faq-toggle {
	display: none;
}

.faq-arrow {
	transition: transform 0.3s;
}

.faq-toggle:checked~.faq-question .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	background: #f8f9fa;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-toggle:checked~.faq-answer {
	max-height: 300px;
	padding: 1.2rem;
}

/* === CONTACT SECTION === */
.contact-info {
	background: white;
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
}

.contact-item h3 {
	color: var(--accent-1);
	margin-bottom: 1rem;
}

/* === FOOTER === */
footer {
	background-color: var(--text);
	color: white;
	padding: 3rem 0 1rem;
}



.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	color: var(--accent-2);
	margin-bottom: 1.2rem;
	font-size: 1.3rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: white;
	opacity: 0.8;
}

.footer-links a:hover {
	opacity: 1;
	color: var(--accent-2);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--text);
	color: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	max-width: 90%;
	width: 400px;
	display: none;
}

.cookie-popup.active {
	display: block;
	animation: fadeIn 0.5s;
}

.cookie-text {
	margin-bottom: 15px;
}

.cookie-btn {
	background-color: var(--accent-2);
	color: var(--text);
	border: none;
	padding: 8px 15px;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 600;
}

/* Thank you page */
.thank-you-container {
	margin: 8rem auto 5rem;
	max-width: 800px;
	background: white;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Policy pages */
.policy-container {
	margin: 3rem auto;
	max-width: 1000px;
	background: white;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.section-padding {
		padding: 3rem 0;
	}

	/* Burger menu */

	.burger-menu,
	.burger-icon {
		display: block;
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	nav ul {
		flex-direction: column;
		padding: 0;
		gap: 0;
	}

	nav ul li {
		width: 100%;
	}

	nav ul li a {
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid #eee;
	}

	#burger-toggle:checked~nav {
		max-height: 300px;
	}

	.form-section {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.container {
		padding: 0 15px;
	}

	.section-padding {
		padding: 2.5rem 0;
	}
}