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

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

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

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	color: #2c3e50;
}

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

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

.nav-menu.active {
	display: flex;
}

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

.nav-menu a:hover {
	color: #3498db;
}

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

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

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

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

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

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

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

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

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

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

/* Animations */
.animate-section {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.6s ease-out;
}

.animate-section.in-view {
	opacity: 1;
	transform: scale(1);
}

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

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

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

.services-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

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

.services-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
}

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

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

.text-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #555;
}

/* Services Cards */
.services-cards {
	padding: 80px 0;
}

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

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 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;
	text-align: center;
}

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

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

.service-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

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

.process-optimization {
	padding: 80px 0;
}

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

.service-detail p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #555;
}

.service-detail-image {
	width: 100%;
	max-width: 600px;
	height: 300px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Digital Solutions */
.digital-solutions {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

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

.solution-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #2c3e50;
	color: white;
}

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

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

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

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 10px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
}

.form-group textarea {
	resize: vertical;
}

/* Checkbox Styling */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #555;
}

.contact .checkbox-label {
	color: #fff;
}

.checkbox-label input[type='checkbox'] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	background: white;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}

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

.checkbox-label input[type='checkbox']:checked::after {
	content: '✓';
	position: absolute;
	top: -1px;
	left: 2px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.contact .checkbox-label input[type='checkbox'] {
	border-color: rgba(255, 255, 255, 0.3);
}

.contact .checkbox-label input[type='checkbox']:checked {
	background: #fff;
	border-color: #fff;
}

.contact .checkbox-label input[type='checkbox']:checked::after {
	color: #3498db;
}

/* Contact Form Loading State */
.contact-form button[type='submit']:disabled {
	background: #95a5a6;
	cursor: not-allowed;
	transform: none;
}

.contact-form button[type='submit']:disabled:hover {
	background: #95a5a6;
	transform: none;
}

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

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

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

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

.faq-question h3 {
	font-size: 1.2rem;
	color: #2c3e50;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #3498db;
}

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

.faq-answer.active {
	padding: 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: #555;
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 40px 0 20px;
}

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

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	max-width: 400px;
}

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

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
	margin-bottom: 1rem;
	color: #2c3e50;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #555;
}

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

.cookie-buttons .btn {
	flex: 1;
	text-align: center;
}

/* Success Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	max-width: 400px;
	position: relative;
}

.close {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #aaa;
}

.close:hover {
	color: #000;
}

/* Success Modal Auto-close Animation */
.modal.show .modal-content {
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

.legal-page .container {
	max-width: 800px;
}

.legal-page h1 {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 1rem;
	text-align: center;
}

.legal-page h2 {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #3498db;
	padding-bottom: 0.5rem;
}

.legal-page h3 {
	font-size: 1.4rem;
	color: #34495e;
	margin-top: 2rem;
	margin-bottom: 0.8rem;
}

.legal-page p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1.2rem;
}

.legal-page p:first-of-type {
	font-style: italic;
	color: #7f8c8d;
	text-align: center;
	margin-bottom: 2rem;
}

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

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

.legal-page strong {
	color: #2c3e50;
	font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
	.legal-page {
		padding: 100px 0 60px;
	}

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

	.legal-page p,
	.legal-page li {
		font-size: 1rem;
	}

	.legal-page ul {
		margin-left: 1.5rem;
	}
}

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

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 1rem 0;
		gap: 0;
	}

	.nav-menu li {
		padding: 0.5rem 2rem;
	}

	.nav-menu li a {
		display: block;
		padding: 0.5rem 0;
		border-bottom: 1px solid #f0f0f0;
	}

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

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

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

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

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

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

	.service-image {
		height: 150px;
	}

	.service-detail-image {
		height: 200px;
	}
}

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

	.hero,
	.services-hero {
		padding: 100px 0 60px;
	}

	section {
		padding: 60px 0;
	}

	h2 {
		font-size: 2rem !important;
	}

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