/* Global Styles */
:root {
	--bg-color: #0F1A2B;
	--accent-yellow: #FFB400;
	--accent-teal: #00D1B2;
	--heading-color: #F0F0F0;
	--text-color: #C2C8D0;
	--gradient-start: #1A2B4C;
	--gradient-end: #0F1A2B;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-color);
	overflow-x: hidden;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--accent-teal);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: var(--accent-yellow);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	font-size: 2.2rem;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background-color: var(--accent-yellow);
	margin: 15px auto 0;
}

section {
	padding: 5rem 0;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s;
	text-align: center;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-color: var(--accent-yellow);
	color: var(--bg-color);
}

.btn-primary:hover {
	background-color: #e6a200;
	color: var(--bg-color);
}

.btn-secondary {
	background-color: var(--accent-teal);
	color: var(--bg-color);
}

.btn-secondary:hover {
	background-color: #00bca0;
	color: var(--bg-color);
}

.btn-nav {
	background-color: var(--accent-teal);
	color: var(--bg-color);
	padding: 8px 16px;
}

.img-fluid {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header Styles */
.site-header {
	background-color: rgba(15, 26, 43, 0.95);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 100;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent-yellow);
	text-transform: lowercase;
}

.logo:hover {
	color: var(--accent-teal);
}

/* Navigation */
.main-nav {
	position: relative;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
}

.menu-icon-line {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--heading-color);
	position: absolute;
	transition: all 0.3s;
}

.menu-icon-line:first-child {
	top: 0;
}

.menu-icon-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.menu-icon-line:last-child {
	bottom: 0;
}

.nav-list {
	display: flex;
	list-style: none;
}

.nav-list li {
	margin-left: 2rem;
}

.nav-list a {
	color: var(--heading-color);
	font-weight: 600;
}

.nav-list a:hover {
	color: var(--accent-yellow);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.menu-icon {
		display: block;
	}

	.nav-list {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		right: 0;
		width: 90vw;
		background-color: var(--bg-color);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	}

	.nav-list li {
		margin: 0;
	}

	.nav-list a {
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.menu-toggle:checked~.nav-list {
		display: flex;
	}

	.menu-toggle:checked~.menu-icon .menu-icon-line:first-child {
		transform: rotate(45deg);
		top: 8px;
	}

	.menu-toggle:checked~.menu-icon .menu-icon-line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.menu-icon .menu-icon-line:last-child {
		transform: rotate(-45deg);
		bottom: 9px;
	}
}

/* Hero Section */
.hero-section {
	height: 80vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	background-image: linear-gradient(rgba(15, 26, 43, 0.7), rgba(15, 26, 43, 0.7)), url('./img/9tcfX.jpg');
	background-size: cover;
	background-position: center;
	text-align: center;
}

.hero-section h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--accent-teal);
}

/* About Section */
.about-section {
	background-color: var(--bg-color);
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-image {
	flex: 1;
	min-width: 300px;
}

/* Advantages Section */
.advantages-section {
	background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

/* Card Grid */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 2rem;
}

.card {
	background: rgba(26, 43, 76, 0.5);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-bottom: 3px solid var(--accent-yellow);
}

.card-body {
	padding: 1.5rem;
}

/* Services Section */
.services-section {
	background-color: var(--bg-color);
}

/* Infographic Section */
.infographic-section {
	background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 0 auto;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: var(--accent-yellow);
	color: var(--bg-color);
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
}

.step-content {
	flex: 1;
}

/* Testimonials Section */
.testimonials-section {
	background-color: var(--bg-color);
}

.testimonial-card {
	background: rgba(26, 43, 76, 0.5);
	padding: 2rem;
	border-radius: 8px;
	position: relative;
	border-left: 4px solid var(--accent-teal);
}

.testimonial-content {
	font-style: italic;
	position: relative;
	padding-left: 25px;
}

.testimonial-content:before {
	content: '"';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.5rem;
	color: var(--accent-teal);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-author {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-section {
	background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 15px;
	position: relative;
	cursor: pointer;
	font-weight: 600;
	color: var(--heading-color);
}

.faq-question:after {
	content: '+';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-toggle:checked~.faq-question:after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s;
	padding: 0 15px;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
}

/* Contact Section */
.contact-section {
	background-color: var(--bg-color);
}

.contact-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-form {
	flex: 1;
	min-width: 300px;
	background: rgba(26, 43, 76, 0.5);
	padding: 2rem;
	border-radius: 8px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	gap: 15px;
}

.contact-icon {
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.contact-icon.location {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB400'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-icon.phone {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB400'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.contact-icon.email {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB400'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.contact-map {
	margin-top: 2rem;
	border-radius: 8px;
	overflow: hidden;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--heading-color);
	font-weight: 600;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(15, 26, 43, 0.7);
	border-radius: 4px;
	color: var(--heading-color);
	font-size: 1rem;
}

.form-group select option {
	background-color: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--accent-teal);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin-top: 4px;
}

/* Footer Styles */
.site-footer {
	background-color: rgba(10, 18, 30, 0.95);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-legal {
	flex: 1;
	min-width: 200px;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul,
.footer-legal ul {
	list-style: none;
}

.footer-links li,
.footer-legal li {
	margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(15, 26, 43, 0.95);
	padding: 1rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.cookie-consent.show {
	display: block;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 1rem;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 300px;
}

/* Legal Pages */
.legal-section {
	padding: 5rem 0;
	min-height: 70vh;
}

.legal-content {
	background: rgba(26, 43, 76, 0.3);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block {
	margin-bottom: 2.5rem;
}

.legal-block h2 {
	color: var(--accent-yellow);
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}

.legal-block h3 {
	color: var(--accent-teal);
	margin: 1.5rem 0 1rem;
	font-size: 1.4rem;
}

/* Thank You Page */
.thank-you-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 300px);
	padding: 5rem 0;
}

.thank-you-content {
	background: rgba(26, 43, 76, 0.3);
	padding: 3rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 700px;
	margin: 8rem auto 5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
	.hero-section h1 {
		font-size: 3rem;
	}

	section {
		padding: 4rem 0;
	}
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 576px) {
	.hero-section h1 {
		font-size: 2rem;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		flex-direction: column;
	}

	.step-number {
		margin-bottom: 10px;
	}
}