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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: #555;
}

a {
	text-decoration: none;
	color: #3498db;
	transition: color 0.3s ease;
}

a:hover {
	color: #2980b9;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 5px;
}

.btn-primary {
	background-color: #3498db;
	color: white;
}

.btn-primary:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #95a5a6;
	color: white;
}

.btn-secondary:hover {
	background-color: #7f8c8d;
}

.btn-outline {
	background-color: transparent;
	color: #3498db;
	border: 2px solid #3498db;
}

.btn-outline:hover {
	background-color: #3498db;
	color: white;
}

/* Cookie Consent Banner */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #2c3e50;
	color: white;
	padding: 20px;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.hidden {
	display: none;
}

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

.cookie-content p {
	margin: 0;
	color: white;
	flex: 1;
}

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

.cookie-link {
	color: #3498db;
	text-decoration: underline;
	margin-left: 10px;
}

/* Header */
.header {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(248, 249, 250, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
	padding: 1.2rem 0;
	position: relative;
}

.navbar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(52, 152, 219, 0.1),
		transparent
	);
	pointer-events: none;
}

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

.nav-brand h1 {
	background: linear-gradient(135deg, #3498db, #2980b9, #8e44ad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2rem;
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.5px;
	position: relative;
}

.nav-brand h1::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	border-radius: 2px;
	opacity: 0.3;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 35px;
	align-items: center;
	position: relative;
}

.nav-menu::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	right: -20px;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(52, 152, 219, 0.05),
		rgba(142, 68, 173, 0.05)
	);
	border-radius: 30px;
	transform: translateY(-50%);
	z-index: -1;
}

.nav-link {
	color: #2c3e50;
	font-weight: 600;
	padding: 12px 20px;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 25px;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	border-radius: 25px;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
	z-index: -1;
}

.nav-link:hover,
.nav-link.active {
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.nav-link:hover::before,
.nav-link.active::before {
	opacity: 1;
	transform: scale(1);
}

.nav-link.active {
	animation: activeNavPulse 2s infinite;
}

@keyframes activeNavPulse {
	0%,
	100% {
		box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
	}
	50% {
		box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
	border-radius: 8px;
	background: rgba(52, 152, 219, 0.1);
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	background: rgba(52, 152, 219, 0.2);
	transform: scale(1.05);
}

.nav-toggle span {
	width: 28px;
	height: 3px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
	padding: 120px 0;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 60%,
			rgba(52, 152, 219, 0.2) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(
		135deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: skewY(-2deg);
	pointer-events: none;
}

.hero-content .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text {
	position: relative;
}

.hero-text::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	border-radius: 20px;
	z-index: -1;
}

.hero-text h2 {
	font-size: 3.5rem;
	margin-bottom: 25px;
	color: white;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #fff, #f8f9fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: heroTextGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTextGlow {
	0% {
		text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
	}
	100% {
		text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
	}
}

.hero-text p {
	font-size: 1.3rem;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.hero-buttons .btn {
	padding: 15px 35px;
	font-size: 1.1rem;
	position: relative;
	overflow: hidden;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.hero-buttons .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
	left: 100%;
}

.hero-buttons .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-image {
	position: relative;
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.2),
		rgba(255, 255, 255, 0.1)
	);
	border-radius: 20px;
	z-index: -1;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
}

.hero-image:hover img {
	transform: translateY(-5px) scale(1.02);
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.page-header-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: white;
}

.page-header-content p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(52, 152, 219, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(142, 68, 173, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.features h2 {
	text-align: center;
	margin-bottom: 80px;
	font-size: 3rem;
	position: relative;
	background: linear-gradient(135deg, #2c3e50, #3498db);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	border-radius: 2px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 1;
}

.feature-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 50px 35px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(52, 152, 219, 0.1),
		rgba(142, 68, 173, 0.1)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
}

.feature-icon {
	font-size: 4rem;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 25px;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
	margin-bottom: 20px;
	color: #2c3e50;
	font-size: 1.4rem;
	position: relative;
	z-index: 1;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

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

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

.services-text h2 {
	margin-bottom: 20px;
}

.services-text p {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.services-list {
	list-style: none;
	margin-bottom: 30px;
}

.services-list li {
	padding: 10px 0;
	color: #555;
	display: flex;
	align-items: center;
	gap: 10px;
}

.services-list i {
	color: #27ae60;
	font-size: 1.1rem;
}

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

/* Services Grid */
.services-grid {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

.service-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 20px;
}

.service-card h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.service-card p {
	margin-bottom: 20px;
	color: #666;
}

.service-features {
	list-style: none;
}

.service-features li {
	padding: 5px 0;
	color: #555;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-features i {
	color: #27ae60;
	font-size: 0.9rem;
}

/* Technology Stack */
.technology-stack {
	padding: 80px 0;
}

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

.tech-content h2 {
	margin-bottom: 30px;
	text-align: center;
	grid-column: 1 / -1;
}

.tech-categories {
	display: grid;
	gap: 30px;
}

.tech-category h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.tech-items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tech-item {
	background-color: #ecf0f1;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #2c3e50;
}

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

/* Process Section */
.process {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

.process-step {
	text-align: center;
	padding: 30px 20px;
}

.step-number {
	width: 60px;
	height: 60px;
	background-color: #3498db;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

.process-step h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.process-step p {
	color: #666;
}

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

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

.about-text h2 {
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.about-text h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #2c3e50;
}

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

/* Values Section */
.values {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.values h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
}

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

.value-card {
	background: white;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.value-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 20px;
}

.value-card h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.value-card p {
	color: #666;
}

/* Team Section */
.team {
	padding: 80px 0;
}

.team h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
}

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

.team-text p {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.expertise-areas h3 {
	margin-bottom: 20px;
	color: #2c3e50;
}

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

.expertise-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 5px;
}

.expertise-item i {
	color: #3498db;
	font-size: 1.2rem;
}

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

/* Company Info */
.company-info {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

.company-card {
	background: white;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.company-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 20px;
}

.company-card h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.company-card p {
	color: #666;
	margin-bottom: 5px;
}

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

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

.contact-info h2 {
	margin-bottom: 20px;
}

.contact-info p {
	margin-bottom: 40px;
	font-size: 1.1rem;
}

.contact-methods {
	display: grid;
	gap: 30px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 10px;
}

.contact-icon {
	font-size: 2rem;
	color: #3498db;
	margin-top: 5px;
}

.contact-details h3 {
	margin-bottom: 5px;
	color: #2c3e50;
}

.contact-details p {
	margin-bottom: 5px;
	color: #333;
	font-weight: 500;
}

.contact-details span {
	color: #666;
	font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
	margin-bottom: 30px;
	color: #2c3e50;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #333;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3498db;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
}

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

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	margin-top: 2px;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background-color: #3498db;
	border-color: #3498db;
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.error-message {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.error-message.show {
	display: block;
}

.success-message {
	text-align: center;
	padding: 40px;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 10px;
	margin-top: 20px;
}

.success-message i {
	font-size: 3rem;
	color: #155724;
	margin-bottom: 20px;
}

.success-message h3 {
	color: #155724;
	margin-bottom: 10px;
}

.success-message p {
	color: #155724;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

.faq-item h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.faq-item p {
	color: #666;
}

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

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

.last-updated {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 30px;
}

.last-updated p {
	margin: 0;
	color: #666;
}

.legal-document h2 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
}

.legal-document h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.legal-document ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.legal-document li {
	margin-bottom: 10px;
	color: #555;
}

.contact-details {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}

.contact-details p {
	margin-bottom: 5px;
}

.cookie-management {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
	text-align: center;
}

.cookie-management p {
	margin-bottom: 15px;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 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 30% 30%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.cta::after {
	content: '';
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(
		135deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: skewY(-2deg);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
	font-size: 3rem;
	margin-bottom: 25px;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	animation: ctaPulse 3s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
	0% {
		text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
	}
	100% {
		text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
	}
}

.cta-content p {
	font-size: 1.3rem;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.cta .btn {
	padding: 18px 40px;
	font-size: 1.2rem;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.cta .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.6s;
}

.cta .btn:hover::before {
	left: 100%;
}

.cta .btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
	color: white;
	padding: 80px 0 20px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(52, 152, 219, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(142, 68, 173, 0.1) 0%,
			transparent 50%
		),
		linear-gradient(
			135deg,
			transparent 0%,
			rgba(255, 255, 255, 0.05) 50%,
			transparent 100%
		);
	pointer-events: none;
}

.footer::after {
	content: '';
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(
		135deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: skewY(2deg);
	pointer-events: none;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.footer-section {
	position: relative;
	padding: 30px 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.footer-section:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	border-radius: 15px 15px 0 0;
}

.footer-section h3 {
	margin-bottom: 25px;
	color: white;
	font-size: 1.5rem;
	position: relative;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	border-radius: 2px;
}

.footer-section h4 {
	margin-bottom: 20px;
	color: white;
	font-size: 1.2rem;
	position: relative;
}

.footer-section p {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

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

.footer-section ul li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 15px;
}

.footer-section ul li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #3498db;
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
	transform: translateX(3px);
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.85);
	transition: all 0.3s ease;
	position: relative;
}

.footer-section ul li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	transition: width 0.3s ease;
}

.footer-section ul li a:hover {
	color: #3498db;
	padding-left: 5px;
}

.footer-section ul li a:hover::after {
	width: 100%;
}

.social-links {
	display: flex;
	gap: 20px;
	margin-top: 25px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		rgba(52, 152, 219, 0.2),
		rgba(142, 68, 173, 0.2)
	);
	border-radius: 50%;
	color: white;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #3498db, #8e44ad);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.social-link:hover::before {
	opacity: 1;
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.social-link i {
	position: relative;
	z-index: 1;
}

.contact-info p {
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.contact-info p:hover {
	color: #3498db;
	padding-left: 5px;
}

.contact-info i {
	color: #3498db;
	width: 25px;
	font-size: 1.2rem;
	text-align: center;
}

.footer-bottom {
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	position: relative;
	margin-top: 30px;
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: linear-gradient(135deg, #3498db, #8e44ad);
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

/* Animation Enhancements */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.animate-in {
	animation: fadeInUp 0.8s ease-out;
}

.hero-image img {
	animation: float 6s ease-in-out infinite;
}

.nav-brand h1 {
	animation: pulse 2s ease-in-out infinite;
}

/* Mobile Navigation */
.nav-menu.active {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	flex-direction: column;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 15px 15px;
	gap: 10px;
	animation: slideInTop 0.3s ease-out;
}

@keyframes slideInTop {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-menu.active .nav-link {
	padding: 15px 20px;
	border-radius: 10px;
	margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.hero {
		padding: 80px 0;
		min-height: 500px;
	}

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

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

	.features h2 {
		font-size: 2.2rem;
	}

	.cta-content h2 {
		font-size: 2.2rem;
	}

	.about-grid,
	.services-content,
	.tech-content,
	.team-content,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

	.process-steps {
		grid-template-columns: 1fr;
	}

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

	.hero-buttons .btn {
		width: 80%;
		max-width: 300px;
	}

	.page-header-content h1 {
		font-size: 2.2rem;
	}

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

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

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.social-links {
		justify-content: center;
	}
}

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

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

	.contact-form-container {
		padding: 20px;
	}

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

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

/* Loading Animation */
.loading {
	opacity: 0.6;
	pointer-events: none;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
	border-color: #e74c3c;
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
	border-color: #27ae60;
}

/* 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 States */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* Print Styles */
@media print {
	.header,
	.footer,
	.cookie-consent,
	.cta {
		display: none;
	}

	body {
		font-size: 12pt;
		line-height: 1.5;
	}

	.container {
		max-width: none;
		padding: 0;
	}
}
