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

body {
	font-family: 'Noto Sans', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.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: bold;
	text-decoration: none;
	color: #333;
}

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

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #007bff;
}

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

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

.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);
}

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

.checkbox-group input[type='checkbox'] {
	width: auto;
	margin: 0;
	margin-top: 2px;
}

.checkbox-group label {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
	cursor: pointer;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('/assets/img/hero-bg.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-content p {
	font-size: 1.2rem;
	margin: 0 auto 2rem;
	max-width: 600px;
}

.hero-small {
	height: 50vh;
	background: linear-gradient(135deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
}

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

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

.btn-primary {
	background: #007bff;
	color: white;
}

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #545b62;
}

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

/* Services */
.services {
	background: #f8f9fa;
}

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

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

.service-card {
	background: white;
	padding: 2rem;
	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-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #007bff;
}

/* Why Choose Us */
.why-choose .content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.why-choose h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.why-choose p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

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

.stat {
	text-align: center;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #007bff;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

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

/* Services Detail */
.detailed-services {
	padding: 80px 0;
}

.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

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

.service-detail.reverse .service-content {
	order: 2;
}

.service-detail.reverse .service-image {
	order: 1;
}

.service-detail h2 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.service-detail p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.service-detail ul {
	list-style: none;
	padding-left: 0;
}

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

.service-detail li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

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

/* Tech Solutions */
.tech-solutions {
	background: #f8f9fa;
}

/* Process Optimization */
.process-optimization {
	background: white;
}

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

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

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

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

.opt-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.opt-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}

/* FAQ */
.faq {
	background: #f8f9fa;
}

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

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	margin: 0;
	font-size: 1.2rem;
	color: #333;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #007bff;
	font-weight: bold;
	transition: transform 0.3s ease;
}

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

.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 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	margin: 0;
	line-height: 1.8;
	color: #666;
}

/* Contact */
.contact {
	background: white;
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

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

.contact-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.contact-item p {
	color: #666;
	line-height: 1.6;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

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

/* CTA */
.cta {
	background: #007bff;
	color: white;
	text-align: center;
}

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

.cta p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta .btn-primary {
	background: white;
	color: #007bff;
}

.cta .btn-primary:hover {
	background: #f8f9fa;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 10000;
	padding: 2rem;
	transform: translateY(100%);
	transition: all 0.3s ease;
}

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

.cookie-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

.cookie-content h3 {
	margin-bottom: 1rem;
	color: #007bff;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

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

/* Legal Pages */
.legal-page {
	margin-top: 80px;
	padding: 3rem 0;
	min-height: calc(100vh - 200px);
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #007bff;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #333;
}

.legal-page p {
	margin-bottom: 1rem;
	line-height: 1.8;
	color: #666;
}

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

.legal-page li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: #666;
}

/* Success Message */
.success-message {
	display: none;
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 5px;
	margin-top: 1rem;
	border: 1px solid #c3e6cb;
}

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.form-modal.show {
	opacity: 1;
	visibility: visible;
}

.form-modal-content {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
	transform: scale(1);
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

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

.form-modal h3 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.form-modal p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		gap: 2rem;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 1000;
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-menu a {
		font-size: 1.2rem;
		padding: 1rem;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #e9ecef;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

	.why-choose .content-wrapper,
	.service-detail,
	.service-detail.reverse,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.service-detail.reverse .service-content,
	.service-detail.reverse .service-image {
		order: initial;
	}

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

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

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

	.container {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.services h2,
	.faq h2,
	.contact h2,
	.cta h2 {
		font-size: 2rem;
	}

	.why-choose h2,
	.service-detail h2 {
		font-size: 1.8rem;
	}

	.cookie-modal {
		padding: 1rem;
	}
}
