* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--text-color: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--white: #ffffff;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--transition: all 0.3s ease;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.nav-brand img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary-color);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: var(--transition);
	-webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
	background: var(--bg-light);
}

.nav-toggle:active {
	transform: scale(0.95);
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	margin: 3px 0;
	transition: var(--transition);
	border-radius: 2px;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.hero-content p {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
}

.btn-primary,
.btn-secondary {
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Sections */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.section-header p {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	background: var(--bg-light);
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.about-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.about-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Content Split */
.content-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.content-split.reverse {
	direction: rtl;
}

.content-split.reverse > * {
	direction: ltr;
}

.content-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.content-text p {
	font-size: 1.125rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.feature-list {
	list-style: none;
	margin-bottom: 2rem;
}

.feature-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-light);
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success-color);
	font-weight: bold;
}

.content-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Services */
.services-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	text-align: center;
}

.services-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.services-hero p {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 800px;
	margin: 0 auto;
}

.service-detail {
	padding: 80px 0;
}

.service-detail:nth-child(even) {
	background: var(--bg-light);
}

.text-only-section {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.text-content p {
	font-size: 1.125rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	text-align: left;
}

.service-features {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.service-features li {
	padding: 1rem;
	background: var(--bg-light);
	border-radius: 8px;
	position: relative;
	padding-left: 2rem;
}

.service-features li::before {
	content: '→';
	position: absolute;
	left: 0.5rem;
	color: var(--primary-color);
	font-weight: bold;
}

/* Services Grid */
.services-grid {
	background: var(--bg-light);
}

.services-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.service-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Contact Section */
.contact {
	background: var(--bg-light);
}

.contact-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.5;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	accent-color: var(--primary-color);
}

.checkbox-label:hover {
	color: var(--text-color);
}

.contact-info {
	display: flex;
	flex-direction: column;
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.contact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.contact-item p {
	color: var(--text-light);
	line-height: 1.6;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

/* FAQ Section */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--bg-light);
}

.faq-question h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-color);
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color);
	transition: var(--transition);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 200px;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	background: var(--primary-color);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.cta-section .btn-primary {
	background: white;
	color: var(--primary-color);
}

.cta-section .btn-primary:hover {
	background: var(--bg-light);
	transform: translateY(-2px);
}

.cta-section .btn-secondary {
	border-color: white;
	color: white;
}

.cta-section .btn-secondary:hover {
	background: white;
	color: var(--primary-color);
}

/* Footer */
.footer {
	background: var(--text-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.footer-brand p {
	color: #9ca3af;
	line-height: 1.6;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: white;
}

.footer-column a {
	display: block;
	color: #9ca3af;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: var(--transition);
}

.footer-column a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
}

.footer-bottom p {
	color: #9ca3af;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	border-top: 1px solid var(--border-color);
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	transform: translateY(100%);
	transition: var(--transition);
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 2rem;
	align-items: center;
}

.cookie-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.cookie-content p {
	color: var(--text-light);
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-link {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 0.875rem;
}

.cookie-link:hover {
	text-decoration: underline;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
	display: block;
}

.modal-content {
	background-color: white;
	margin: 15% auto;
	padding: 2rem;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	text-align: center;
	position: relative;
}

.close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-light);
}

.close:hover {
	color: var(--text-color);
}

.modal-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--success-color);
}

.modal-content p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	min-height: 80vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.last-updated {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-style: italic;
}

.legal-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: var(--text-color);
}

.legal-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: var(--text-color);
}

.legal-content p {
	margin-bottom: 1rem;
	color: var(--text-light);
	line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Animation */
.animate-section {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.animate-section.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Loading Spinner */
.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 1rem auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 73px;
		left: 0;
		right: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 2rem;
		transform: translateY(-100%);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		z-index: 999;
		border-top: 1px solid var(--border-color);
		opacity: 0;
		visibility: hidden;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu .nav-link {
		padding: 1rem 0;
		border-bottom: 1px solid var(--border-color);
		text-align: center;
		font-size: 1.1rem;
		transition: var(--transition);
	}

	.nav-menu .nav-link:last-child {
		border-bottom: none;
	}

	.nav-menu .nav-link:hover {
		background: var(--bg-light);
		color: var(--primary-color);
	}

	.nav-menu .nav-link:active {
		transform: scale(0.98);
	}

	.nav-toggle {
		display: flex;
		z-index: 1001;
		position: relative;
	}

	.nav-toggle span {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: scale(0);
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.hero .container,
	.content-split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.content-split.reverse {
		direction: ltr;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.content-text h2 {
		font-size: 2rem;
	}

	.hero-buttons,
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cookie-content {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}

	.services-cards {
		grid-template-columns: 1fr;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.service-features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.navbar {
		padding: 0.75rem 0;
	}

	.nav-brand {
		height: 35px;
		font-size: 1.1rem;
	}

	.nav-brand img {
		height: 35px;
	}

	.nav-toggle span {
		width: 20px;
		height: 2px;
		margin: 2px 0;
	}

	.nav-menu {
		padding: 1.5rem;
		top: 60px;
	}

	.nav-menu .nav-link {
		font-size: 1rem;
		padding: 0.75rem 0;
	}

	section {
		padding: 60px 0;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-content h1 {
		font-size: 1.75rem;
	}

	.section-header h2 {
		font-size: 1.75rem;
	}

	.content-text h2 {
		font-size: 1.75rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.modal-content {
		margin: 30% auto;
		padding: 1.5rem;
	}
}

/* Additional mobile improvements */
@media (max-width: 320px) {
	.nav-menu {
		padding: 1rem;
		top: 60px;
	}

	.nav-menu .nav-link {
		font-size: 0.95rem;
		padding: 0.5rem 0;
	}

	.hero-content h1 {
		font-size: 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}
}
