/* 
 * Global Styles
 */
:root {
	--primary-color: #4B0082;
	/* Background */
	--accent-color: #00CED1;
	/* Accents and buttons */
	--highlight-color: #FFD700;
	/* Highlighting */
	--text-color: #FFFFFF;
	/* Main text */
	--card-color: #2F4F4F;
	/* Cards and blocks */
}

/* Base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	background-color: var(--primary-color);
	color: var(--text-color);
	line-height: 1.6;
	font-size: 16px;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--highlight-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

.text-center {
	text-align: center;
}

/* Header */
header {
	background-color: rgba(75, 0, 130, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent-color);
	transition: color 0.3s ease;
}

.logo:hover {
	color: var(--highlight-color);
}

/* Navigation */
.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 1.5rem;
}

nav ul li a {
	color: var(--text-color);
	font-weight: 600;
	position: relative;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--highlight-color);
	transition: width 0.3s ease;
}

nav ul li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	padding: 0 1rem;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s forwards;
	opacity: 0;
}

.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: var(--accent-color);
	color: var(--primary-color);
	border: none;
	border-radius: 5px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s forwards;
	opacity: 0;
}

.btn:hover {
	background-color: var(--highlight-color);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-title {
	position: relative;
	margin-bottom: 3rem;
	text-align: center;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--accent-color);
}

/* About Section */
.about-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	height: 300px;
	overflow: hidden;
	border-radius: 10px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.about-image img:hover {
	transform: scale(1.05);
}

/* Advantages Section */
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.advantage-item {
	background-color: var(--card-color);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.advantage-item img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	margin-bottom: 15px;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: var(--card-color);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.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: 20px;
}

/* Testimonials */
.testimonials-slider {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-item {
	background-color: var(--card-color);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	margin: 20px;
}

.testimonial-content {
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	color: var(--accent-color);
}

/* Workflow */
.workflow-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 0 auto;
}

.workflow-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 30px;
}

.workflow-item:last-child {
	margin-bottom: 0;
}

.workflow-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20px;
	height: 100%;
	width: 2px;
	background-color: var(--accent-color);
}

.workflow-item:last-child::before {
	height: 50%;
}

.workflow-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-weight: 700;
	z-index: 2;
}

.workflow-content {
	background-color: var(--card-color);
	padding: 20px;
	border-radius: 10px;
}

/* Contact Form */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--card-color);
	padding: 30px;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-color);
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 15px;
}

select.form-control option {
	background-color: #446161;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 5px;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	background-color: var(--card-color);
	padding: 15px 20px;
	position: relative;
	cursor: pointer;
}

.faq-question label {
	display: block;
	font-weight: 600;
	padding-right: 30px;
	cursor: pointer;
}

.faq-question label::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	transition: transform 0.3s ease;
}

.faq-toggle {
	display: none;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: rgba(47, 79, 79, 0.7);
	transition: max-height 0.3s ease;
}

.faq-answer-content {
	padding: 0 20px;
}

.faq-toggle:checked+.faq-question label::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-toggle:checked~.faq-answer {
	max-height: 300px;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.contact-item {
	background-color: var(--card-color);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	transition: transform 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-5px);
}

.contact-icon {
	font-size: 30px;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.map-container {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 30px;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Footer */
footer {
	background-color: rgba(47, 79, 79, 0.9);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 2rem;
}

.footer-column h3 {
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	padding: 15px;
	background-color: var(--card-color);
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	transition: bottom 0.5s ease;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-popup p {
	margin: 0;
	padding-right: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.cookie-btn {
	padding: 8px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

.accept-cookies {
	background-color: var(--accent-color);
	color: var(--primary-color);
}

.decline-cookies {
	background-color: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}

/* Thank You Page */
.thank-you-container {
	margin: 8rem auto 5rem;
	max-width: 600px;
	background-color: var(--card-color);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.thank-you-icon {
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 20px;
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 8rem auto 5rem;
	background-color: var(--card-color);
	padding: 30px;
	border-radius: 10px;
}

.policy-container h1 {
	text-align: center;
	margin-bottom: 30px;
}

.policy-section {
	margin-bottom: 30px;
}

.policy-section h2 {
	margin-bottom: 15px;
	color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
	.fade-in {
		animation: none;
		opacity: 1;
		transform: translateY(0);
	}
}

/* Media Queries */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		order: -1;
	}
}

@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
		cursor: pointer;
		font-size: 1.5rem;
		color: var(--accent-color);
	}

	.nav-toggle-label span {
		display: block;
		width: 30px;
		height: 3px;
		background-color: var(--accent-color);
		margin: 5px 0;
		transition: all 0.3s ease;
	}

	.nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--primary-color);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
	}

	.nav-toggle:checked~nav {
		max-height: 300px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	}

	nav ul {
		flex-direction: column;
		padding: 15px 0;
	}

	nav ul li {
		margin: 0;
		text-align: center;
		padding: 10px 0;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.cookie-popup {
		flex-direction: column;
		text-align: center;
	}

	.cookie-popup p {
		margin-bottom: 15px;
		padding-right: 0;
	}
}

@media (max-width: 576px) {
	section {
		padding: 3rem 0;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.workflow-item {
		padding-left: 50px;
	}
}