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

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

.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);
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.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;
	gap: 2rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
}

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	max-width: 400px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 2000;
	display: none;
}

.cookie-modal.show {
	display: block;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.cookie-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
	background: #0056b3;
}

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

.cookie-btn.decline:hover {
	background: #e9ecef;
}

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

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

.hero-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: #666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

/* Sections */
section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

/* Services Section */
.services {
	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: 8px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.service-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	border-radius: 8px;
}

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

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

/* Insights Section */
.insights {
	background: white;
}

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

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

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

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

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

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.contact-item .emoji {
	font-size: 1.5rem;
	margin-right: 1rem;
}

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

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	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 {
	height: 120px;
	resize: vertical;
}

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

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

.checkbox-label input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	height: 20px;
	width: 20px;
	background-color: #fff;
	border: 2px solid #ddd;
	border-radius: 3px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
	border-color: #007bff;
}

.checkbox-label input:checked ~ .checkmark {
	background-color: #007bff;
	border-color: #007bff;
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
	display: block;
}

.checkbox-label .checkmark:after {
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.submit-btn {
	width: 100%;
	padding: 12px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	background: #0056b3;
}

/* FAQ Section */
.faq {
	background: white;
}

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

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

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

.faq-question:hover {
	color: #007bff;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
}

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

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

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

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

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

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f9fa;
}

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

.about-hero p {
	font-size: 1.25rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.our-story {
	background: white;
}

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

.story-text h2 {
	text-align: left;
	margin-bottom: 2rem;
}

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

.story-image img {
	width: 100%;
	border-radius: 8px;
}

.our-approach {
	background: #f8f9fa;
}

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

.approach-card {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-icon {
	margin-bottom: 1.5rem;
}

.approach-icon img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.approach-icon .emoji {
	font-size: 3rem;
}

.approach-card h3 {
	margin-bottom: 1rem;
	color: #333;
}

.approach-card p {
	color: #666;
	line-height: 1.7;
}

.why-choose {
	background: white;
}

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

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

.team-expertise {
	background: #f8f9fa;
}

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

.expertise-text h2 {
	text-align: left;
	margin-bottom: 2rem;
}

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

.expertise-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat h3 {
	font-size: 2.5rem;
	color: #007bff;
	margin-bottom: 0.5rem;
}

.stat p {
	color: #666;
	font-weight: 600;
}

.values {
	background: white;
}

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

.value-card {
	text-align: center;
	padding: 2rem;
}

.value-card .emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.value-card h3 {
	margin-bottom: 1rem;
	color: #333;
}

.value-card p {
	color: #666;
	line-height: 1.7;
}

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

.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 h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

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

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

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

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

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

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

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

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

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

.footer-column a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

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

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

/* Form Success Modal */
.form-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: 3000;
}

.form-modal.show {
	display: flex;
	animation: fadeIn 0.3s ease;
}

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	max-width: 400px;
	margin: 0 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.form-modal p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Form Success Message */
.form-success {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
	border: 1px solid #c3e6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav {
		padding: 1rem;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 1rem 2rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		gap: 1rem;
		border-top: 1px solid #eee;
	}

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

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

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

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

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

	section h2 {
		font-size: 2rem;
	}

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

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

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

	.expertise-stats {
		flex-direction: row;
		justify-content: space-around;
	}

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

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

	.hero {
		padding: 100px 0 60px;
	}

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

	.expertise-stats {
		flex-direction: column;
	}
}
