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

body {
	font-family: 'Cal Sans', 'Noto Sans', 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: 1rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
}

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

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

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

/* Hero Section Updates */
.hero-section .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.consulting-hero {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Service Cards with Images */
.service-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

/* Specialized Services Layout */
.specialized-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.specialized-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Financial Advisory Hero */
.financial-hero {
	margin-bottom: 3rem;
	text-align: center;
}

.financial-hero img {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Technology Implementation Layout */
.technology-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.technology-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Specialized Services */
.specialized-services {
	padding: 80px 0;
	background: #fff;
}

.specialized-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

/* Financial Advisory */
.financial-advisory {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

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

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

/* Technology Implementation */
.technology-implementation {
	padding: 80px 0;
	background: #fff;
}

.technology-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

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

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

.contact-item strong {
	color: #333;
	font-size: 1.1rem;
}

.contact-item p {
	color: #666;
	margin-top: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	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-answer.active {
	max-height: 200px;
	padding: 1.5rem;
}

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

/* Footer */
.footer {
	background: #333;
	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;
	color: #fff;
}

.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: #007bff;
}

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

/* Cookie 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-content {
	background-color: white;
	margin: 10% auto;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 500px;
	text-align: center;
}

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

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

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

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

.submission-modal-content {
	background-color: white;
	margin: 15% auto;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
}

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

.submission-modal-content p {
	margin-bottom: 1rem;
	color: #666;
	line-height: 1.6;
}

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

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

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	background: #fff;
}

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

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

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

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

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

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

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

/* Responsive Design Updates */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		transition: left 0.3s ease;
		z-index: 999;
	}

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

	.nav-menu a {
		font-size: 1.5rem;
		font-weight: 600;
	}

	.mobile-menu-toggle {
		display: flex;
		z-index: 1001;
	}

	.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-section .container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-image {
		order: -1;
	}

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

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

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

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

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

	.specialized-text h3,
	.technology-text h3 {
		font-size: 1.5rem;
	}

	.specialized-text p,
	.technology-text p {
		font-size: 1rem;
	}

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

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

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

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

	.financial-grid {
		grid-template-columns: 1fr;
	}
}

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

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

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

	.modal-content {
		margin: 20% auto;
		padding: 1.5rem;
	}
}
