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

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

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

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

.navbar {
	padding: 1rem 0;
}

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

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

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

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

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

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

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

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

/* Animation Classes */
.section-animate {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

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

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

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

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

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

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

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

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

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

.section-header h2 {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

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

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

.about-text h3 {
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: #555;
}

.about-text ul {
	list-style: none;
	padding: 0;
}

.about-text li {
	margin-bottom: 0.5rem;
	color: #555;
}

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

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

.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);
	text-align: center;
	transition: transform 0.3s ease;
}

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

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

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

.service-card 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: 3rem;
}

.contact-info h3 {
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-item .icon {
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.contact-item h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

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

.contact-form h3 {
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

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

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

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

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

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #333;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	margin-top: 0.2rem;
}

.checkbox-label:hover {
	color: #3498db;
}

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

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

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
}

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

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

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

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

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

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

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

/* Services Page Styles */
.services-hero {
	margin-top: 80px;
	padding: 80px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

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

.services-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.services-hero p {
	font-size: 1.1rem;
	opacity: 0.9;
}

.strategy-section,
.operations-section,
.digital-section {
	padding: 80px 0;
}

.strategy-section {
	background: #f8f9fa;
}

.operations-section {
	background: white;
}

.digital-section {
	background: #f8f9fa;
}

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

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

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

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

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

.service-text p {
	color: #555;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature-item .emoji {
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.feature-item h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

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

.benefits-list {
	list-style: none;
	padding: 0;
}

.benefits-list li {
	color: #555;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.benefits-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #3498db;
	font-weight: bold;
}

.text-only-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.text-only-content h2 {
	font-size: 2.2rem;
	color: #2c3e50;
	margin-bottom: 2rem;
}

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

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

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.submission-modal.show {
	opacity: 1;
	pointer-events: auto;
}

.submission-content {
	background: white;
	padding: 3rem 4rem;
	border-radius: 10px;
	text-align: center;
	color: #2c3e50;
}

.loader-container p,
.success-container p {
	margin-top: 1rem;
	font-size: 1.1rem;
}

.loader {
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

.success-icon {
	font-size: 3rem;
	color: #27ae60;
}

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	padding: 2rem;
	max-width: 400px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-modal.show {
	display: block;
	transform: translateY(0);
	opacity: 1;
}

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

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

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

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

/* Footer */
.footer {
	background: #2c3e50;
	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;
}

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

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

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

.footer-section a:hover {
	color: #3498db;
}

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

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

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

.legal-page section {
	margin-bottom: 3rem;
}

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

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

.legal-page ul {
	color: #555;
	line-height: 1.6;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

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

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

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

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

	.nav-menu li {
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu a {
		padding: 1rem 2rem;
		display: block;
		transition: background-color 0.3s;
	}

	.nav-menu a:hover {
		background-color: #f8f9fa;
	}

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

	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

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

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

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

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

	.hero-buttons .btn {
		text-align: center;
	}

	.service-content.reverse .service-text {
		order: 1;
	}

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

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

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

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

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

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

	.hero,
	.about,
	.services-cards,
	.contact,
	.faq,
	.legal-page {
		padding: 40px 0;
	}

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

	.service-card {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}
}
