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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #eee;
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	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: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 400px;
	z-index: 10000;
	display: none;
}

.cookie-content h3 {
	margin-bottom: 10px;
	color: #333;
}

.cookie-content p {
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #666;
}

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

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

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

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

.btn-secondary {
	background: #f8f9fa;
	color: #333;
	border: 1px solid #ddd;
}

.btn-secondary:hover {
	background: #e9ecef;
}

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

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

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

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

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

/* Services Overview */
.services-overview {
	padding: 80px 0;
}

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

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

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

.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-icon {
	margin-bottom: 1.5rem;
}

.service-icon img {
	width: 100%;
	height: auto;
}

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

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

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

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

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #333;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

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

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-success {
	text-align: center;
	padding: 2rem;
	background: #d4edda;
	border-radius: 10px;
	color: #155724;
}

.form-success h3 {
	margin-bottom: 1rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

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

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

/* Form Success Modal */
.form-success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10001;
}

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

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

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

.form-success-content h3 {
	margin-bottom: 1rem;
	color: #333;
}

.form-success-content p {
	color: #666;
	margin: 0;
}

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

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

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

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

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

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

.service-detail.reverse > * {
	direction: ltr;
}

.service-content h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

.service-content li {
	padding: 0.5rem 0;
	color: #666;
	position: relative;
	padding-left: 1.5rem;
}

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

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

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

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

.process-step {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.process-step h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.process-step p {
	color: #666;
	line-height: 1.6;
}

/* CTA Section */
.cta {
	padding: 80px 0;
	background: #007bff;
	color: white;
	text-align: center;
}

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

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

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

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

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

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

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

.footer-column h4 {
	margin-bottom: 1rem;
	color: white;
}

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

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

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

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

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

/* Legal Pages */
.legal-page {
	margin-top: 80px;
	padding: 80px 0;
}

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

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

.legal-page h3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 1.5rem 0 1rem;
	color: #333;
}

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

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

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

/* Animations */
.fade-in-section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 2rem;
		transition: left 0.3s ease;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

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

	.hero .container,
	.about-content,
	.contact-content,
	.service-detail {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

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

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

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

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

	.nav {
		padding: 1rem 15px;
	}

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

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

	.contact-form,
	.service-card,
	.process-step {
		padding: 1.5rem;
	}
}
