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

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

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

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #f4f4ef;

	z-index: 1000;
	border-bottom: 1px solid #eee;
}

.nav {
	padding: 1rem 0;
}

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

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
	color: #333;
}

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

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

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

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

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

.btn-secondary {
	background: transparent;
	color: #333;
	border: 2px solid #333;
}

.btn-secondary:hover {
	background: #333;
	color: white;
	transform: translateY(-2px);
}

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

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-header h1,
.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
}

/* Hero Section */
.hero {
	padding-top: 120px;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

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

.hero-content h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

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

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

/* About Section */
.about {
	background: #f8f9fa;
}

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

.about-item {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about-item h3 {
	margin-bottom: 1rem;
	color: #333;
}

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

/* Services Preview */
.services-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

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

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

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .card-link {
	padding: 0 2rem;
}

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

.service-card p {
	color: #666;
	margin-bottom: 1.5rem;
}

.card-link {
	display: inline-block;
	padding-bottom: 2rem;
	color: #333;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.card-link:hover {
	color: #666;
}

/* Services Page Specific */
.services-hero {
	padding-top: 120px;
	background: #f8f9fa;
}

.detailed-services {
	padding: 100px 0;
}

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

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

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

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

.service-content h2 {
	margin-bottom: 1.5rem;
	color: #333;
}

.service-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

.service-content li {
	margin-bottom: 0.5rem;
	color: #666;
}

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

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

.benefit-item {
	text-align: center;
}

.benefit-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	display: block;
}

.benefit-item p {
	margin-top: 0.5rem;
	color: #666;
	font-size: 0.9rem;
}

.process-optimization {
	background: #f8f9fa;
}

.text-only {
	background: white;
}

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

.text-content h2 {
	text-align: center;
	margin-bottom: 2rem;
	color: #333;
}

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

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

.faq-page {
	padding-top: 120px;
}

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

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

.faq-question {
	padding: 2rem;
	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;
	color: #333;
	flex: 1;
}

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

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

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

.faq-item.active .faq-answer {
	padding: 0 2rem 2rem 2rem;
	max-height: 500px;
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	background: #f8f9fa;
}

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

.contact-info h3 {
	margin-bottom: 2rem;
	color: #333;
}

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

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

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

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

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

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

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

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

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

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

.footer-section h3 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 1rem;
}

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

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

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

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

.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(5px);
	z-index: 10000;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
	margin-bottom: 1rem;
	color: white;
}

.cookie-content p {
	margin-bottom: 2rem;
	color: #ccc;
}

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

/* Legal Pages */
.legal-page {
	padding-top: 120px;
	padding-bottom: 4rem;
}

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

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

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

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

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

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

/* Checkbox styling */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin-right: 12px;
	margin-top: 2px;
	cursor: pointer;
}

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

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	z-index: 20000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

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

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

.modal-loading {
	display: block;
}

.modal-success {
	display: none;
}

.modal-loading h3 {
	margin-bottom: 1rem;
	color: #333;
}

.modal-success h3 {
	margin-bottom: 1rem;
	color: #28a745;
}

.modal-loading p {
	color: #666;
	margin-bottom: 2rem;
}

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

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

.success-checkmark {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem 0;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu li {
		text-align: center;
		margin: 0.5rem 0;
	}

	.nav-menu a {
		display: block;
		padding: 0.5rem 2rem;
		font-size: 1.1rem;
	}

	.nav-toggle {
		display: flex;
	}

	.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 .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

	.service-detail {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

	.contact-form {
		padding: 2rem;
	}

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

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

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

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

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

	.faq-question {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}

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