/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.7;
	color: #1a202c;
	background-color: #ffffff;
	font-weight: 400;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #3b82f6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #1d4ed8;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	line-height: 1;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
	background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
	color: #2d3748;
	box-shadow: 0 4px 15px rgba(168, 237, 234, 0.4);
}

.btn-secondary:hover {
	background: linear-gradient(135deg, #9ae6e1 0%, #fcc2d7 100%);
	color: #2d3748;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(168, 237, 234, 0.5);
}

.btn-link {
	background-color: transparent;
	color: #3b82f6;
	border: 2px solid #3b82f6;
}

.btn-link:hover {
	background-color: #3b82f6;
	color: white;
	transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 32, 44, 0.95) 0%,
		rgba(45, 55, 72, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	color: white;
	padding: 24px;
	z-index: 1000;
	transform: translateY(100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.cookie-buttons .btn {
	padding: 8px 16px;
	font-size: 14px;
}

/* Header */
.header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
	padding: 1rem 0;
}

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

.nav-brand .logo {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0;
}

.nav-brand .tagline {
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 0;
}

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

.nav-link {
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #667eea;
	transform: translateY(-1px);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	background: linear-gradient(
		135deg,
		#1e3a8a 0%,
		#3730a3 25%,
		#6366f1 50%,
		#8b5cf6 75%,
		#a855f7 100%
	);
	position: relative;
	color: white;
	padding: 150px 0 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(120, 119, 198, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(59, 130, 246, 0.2) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-content .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.hero-text h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

.hero-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
	transition: transform 0.3s ease;
}

.hero-image img:hover {
	transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) scale(1.05);
}

/* Page Hero */
.page-hero {
	background: linear-gradient(
		135deg,
		#1e3a8a 0%,
		#3730a3 25%,
		#6366f1 50%,
		#8b5cf6 75%,
		#a855f7 100%
	);
	color: white;
	padding: 150px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 60%,
			rgba(59, 130, 246, 0.2) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.page-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
}

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

.features h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Services Preview */
.services-preview {
	padding: 100px 0;
}

.services-preview h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .btn {
	margin: 1rem 1.5rem;
}

.service-card h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* About Content */
.about-content {
	padding: 100px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision */
.mission-vision {
	padding: 100px 0;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.mv-card {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.mv-card h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* Expertise */
.expertise {
	padding: 100px 0;
}

.expertise h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.expertise-category {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expertise-category h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.expertise-category ul {
	list-style: none;
}

.expertise-category li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #dee2e6;
}

.expertise-category li:last-child {
	border-bottom: none;
}

/* Company Info Section */
.company-info-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.company-info-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.detail-card {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
	padding: 100px 0;
}

.services-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.services-intro h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

/* Main Services */
.main-services {
	padding: 100px 0;
}

.service-section {
	margin-bottom: 100px;
}

.service-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

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

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

.service-text h2 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	margin: 1.5rem 0;
}

.service-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.service-features li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
}

.service-tech {
	margin-top: 1.5rem;
	padding: 1rem;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	border-radius: 10px;
}

.service-tech h4 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.service-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
	padding: 100px 0;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.additional-services h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.additional-card {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.additional-card h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* Process */
.process {
	padding: 100px 0;
}

.process h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.process-step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.process-step h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
	padding: 100px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-form-container h2 {
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-form {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: normal;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: block;
}

.form-success {
	background-color: #d4edda;
	color: #155724;
	padding: 1.5rem;
	border-radius: 5px;
	border: 1px solid #c3e6cb;
}

.form-success h3 {
	color: #155724;
	margin-bottom: 0.5rem;
}

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

.contact-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-details {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-icon {
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.contact-item h4 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.contact-item p {
	margin-bottom: 0;
}

.response-time {
	background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #667eea;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.response-time h4 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

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

.faq-item {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
	padding: 100px 0;
}

.legal-text {
	max-width: 800px;
	margin: 0 auto;
}

.legal-text h2 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-text h3 {
	color: #333;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.legal-text ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.legal-text li {
	margin-bottom: 0.5rem;
}

.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}

.cookie-table th {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	font-weight: 600;
	color: #667eea;
}

.cookie-preferences {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 2rem;
	border-radius: 15px;
	margin-top: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-preferences h2 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		#1e3a8a 0%,
		#3730a3 25%,
		#6366f1 50%,
		#8b5cf6 75%,
		#a855f7 100%
	);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

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

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

.cta .btn {
	font-size: 1.2rem;
	padding: 15px 30px;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
	color: white;
	padding: 60px 0 20px;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.2) 50%,
		transparent 100%
	);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	color: #007bff;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #ccc;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #007bff;
}

.company-info {
	margin-top: 1rem;
}

.company-info p {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.hero-content .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

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

	.company-details {
		grid-template-columns: 1fr;
	}

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

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.container {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.hero-text h2 {
		font-size: 1.5rem;
	}

	.page-hero h1 {
		font-size: 1.8rem;
	}

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

	.btn {
		width: 100%;
		max-width: 200px;
	}

	.features {
		padding: 60px 0;
	}

	.services-preview {
		padding: 60px 0;
	}

	.about-content {
		padding: 60px 0;
	}

	.contact-section {
		padding: 60px 0;
	}

	.legal-content {
		padding: 60px 0;
	}
}

/* Loading and Animation */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Image Optimization */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

/* Print styles */
@media print {
	.header,
	.footer,
	.cookie-banner,
	.btn {
		display: none;
	}

	.page-hero {
		background: none;
		color: #333;
	}

	.hero {
		background: none;
		color: #333;
	}

	.cta {
		background: none;
		color: #333;
	}
}
