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

body {
	font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.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;
	border-bottom: 1px solid #eee;
}

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

.nav-brand img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

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

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

.nav-link:hover,
.nav-link.active {
	color: #007bff;
}

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

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

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	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;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-image {
	margin-bottom: 3rem;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

.hero-content p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.services-hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

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

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #000;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	padding: 80px 0;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

.about-text h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #000;
}

.about-text p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

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

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

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #000;
}

.service-card p {
	color: #666;
	line-height: 1.7;
}

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

.service-detail {
	max-width: 800px;
	margin: 0 auto;
}

.service-content h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

.service-content p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.service-content ul {
	margin: 2rem 0;
	padding-left: 2rem;
}

.service-content li {
	margin-bottom: 0.8rem;
	color: #555;
	line-height: 1.6;
}

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

.optimization-content h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #000;
}

.optimization-content > p {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 3rem;
	line-height: 1.8;
}

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

.optimization-item {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.optimization-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.optimization-item:hover {
	transform: translateY(-3px);
}

.optimization-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #000;
}

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

/* FAQ Section */
.faq {
	padding: 80px 0;
}

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

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

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

.faq-question:hover {
	color: #007bff;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: inherit;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.contact-info h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

.contact-info > p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item strong {
	display: block;
	color: #000;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

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

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #555;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	min-width: 18px;
	height: 18px;
	accent-color: #007bff;
}

.checkbox-label:hover {
	color: #333;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	padding: 2rem;
	transition: transform 0.3s ease;
}

.cookie-modal.hidden {
	transform: translateY(100%);
}

.cookie-content {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.cookie-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #000;
}

.cookie-content p {
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

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

.form-modal.hidden {
	opacity: 0;
	visibility: hidden;
}

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

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

.loading-spinner {
	width: 40px;
	height: 40px;
	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-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #000;
}

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

/* Footer */
.footer {
	background: #000;
	color: white;
	padding: 4rem 0 2rem;
}

.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: white;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

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

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

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

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

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

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

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

.legal-page h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: #000;
}

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

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

.legal-page ul,
.legal-page ol {
	margin: 1rem 0 1rem 2rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

	.cookie-buttons {
		flex-direction: column;
	}

	.container {
		padding: 0 15px;
	}

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

	.hero-image {
		margin-bottom: 2rem;
	}

	.service-card img,
	.optimization-item img {
		height: 150px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 100px 0 60px;
	}

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

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

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

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

	.service-card,
	.optimization-item {
		padding: 1.5rem;
	}

	.cookie-content {
		padding: 1.5rem;
	}

	.footer {
		padding: 3rem 0 1.5rem;
	}
}
