/* 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: #fff;
}

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

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

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

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

a {
	color: #2563eb;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #1d4ed8;
}

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

.btn-primary {
	background-color: #2563eb;
	color: white;
}

.btn-primary:hover {
	background-color: #1d4ed8;
	color: white;
}

.btn-secondary {
	background-color: #f8fafc;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.btn-secondary:hover {
	background-color: #2563eb;
	color: white;
}

.btn-link {
	background: none;
	color: #2563eb;
	text-decoration: underline;
}

.btn-link:hover {
	color: #1d4ed8;
}

/* Cookie Consent Banner */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.95);
	color: white;
	padding: 20px;
	z-index: 1000;
	display: none;
}

.cookie-consent.show {
	display: block;
}

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

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

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

/* Header */
.header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 999;
}

.navbar {
	padding: 1rem 0;
}

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

.nav-brand .logo {
	height: 40px;
}

.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: #2563eb;
}

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

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

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

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

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: white;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

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

.hero-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.page-header h1 {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

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

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

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

.services-grid {
	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;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 3rem;
	color: #2563eb;
	margin-bottom: 1rem;
}

.service-card h3 {
	margin-bottom: 1rem;
	color: #333;
}

/* Why Choose Us */
.why-choose {
	padding: 80px 0;
}

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

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

.why-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: #666;
}

.why-list i {
	color: #10b981;
	margin-right: 1rem;
	font-size: 1.2rem;
}

.why-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Company Overview */
.company-overview {
	padding: 80px 0;
}

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

.overview-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
	padding: 80px 0;
	background-color: #f8fafc;
}

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

.mv-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mv-icon {
	font-size: 3rem;
	color: #2563eb;
	margin-bottom: 1rem;
}

.mv-card h3 {
	color: #333;
	margin-bottom: 1rem;
}

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

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

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

.team-member {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1rem;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member h4 {
	color: #333;
	margin-bottom: 1rem;
}

/* Why Choose About */
.why-choose-about {
	padding: 80px 0;
	background-color: #f8fafc;
}

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

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

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-item i {
	font-size: 2rem;
	color: #2563eb;
	margin-top: 0.5rem;
}

.feature-item h4 {
	color: #333;
	margin-bottom: 0.5rem;
}

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

.service-detail {
	margin-bottom: 4rem;
}

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

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

.service-detail.reverse .service-text {
	direction: ltr;
}

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

.service-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	color: #666;
}

.service-features i {
	color: #10b981;
	margin-right: 1rem;
}

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

/* Tech Stack */
.tech-stack {
	padding: 80px 0;
	background-color: #f8fafc;
}

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

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

.tech-category {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tech-category h3 {
	color: #333;
	margin-bottom: 1.5rem;
}

.tech-icons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.tech-item i {
	font-size: 2rem;
	color: #2563eb;
}

.tech-item span {
	font-size: 0.9rem;
	color: #666;
}

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

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

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

.step {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.step h4 {
	color: #333;
	margin-bottom: 1rem;
}

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

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

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

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

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

.contact-form-wrapper h2 {
	margin-bottom: 2rem;
	font-size: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	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: #2563eb;
}

.checkbox-group {
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.contact-info {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 12px;
}

.contact-info h3 {
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

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

.contact-item i {
	font-size: 1.5rem;
	color: #2563eb;
	margin-top: 0.25rem;
}

.contact-item strong {
	color: #333;
	display: block;
	margin-bottom: 0.25rem;
}

.contact-item p {
	margin: 0;
	color: #666;
}

.contact-item a {
	color: #2563eb;
}

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

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

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

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
	color: #333;
	margin-bottom: 1rem;
}

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

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

.legal-document h2 {
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}

.legal-document h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.legal-document ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-document li {
	margin-bottom: 0.5rem;
	color: #666;
}

.contact-info {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 12px;
	margin-top: 2rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
}

.contact-info strong {
	color: #333;
}

/* Cookie Table */
.cookie-table {
	overflow-x: auto;
	margin: 2rem 0;
}

.cookie-table table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.cookie-table th {
	background: #f8fafc;
	font-weight: 600;
	color: #333;
}

.cookie-table td {
	color: #666;
}

/* Footer */
.footer {
	background-color: #1f2937;
	color: white;
	padding: 60px 0 20px;
}

.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: white;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #d1d5db;
	margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
	color: #d1d5db;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-section i {
	margin-right: 0.5rem;
	color: #2563eb;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

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

	.services-grid,
	.features-grid,
	.tech-categories,
	.process-steps,
	.team-grid,
	.mv-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.tech-icons {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.hero {
		padding: 60px 0;
	}

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

	.page-header {
		padding: 40px 0;
	}

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

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

	.service-card,
	.mv-card,
	.feature-item,
	.step,
	.faq-item {
		padding: 1.5rem;
	}

	.contact-info {
		padding: 1.5rem;
	}

	.legal-document h2 {
		font-size: 1.5rem;
	}

	.legal-document h3 {
		font-size: 1.2rem;
	}
}

/* Loading and Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

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

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

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