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

:root {
	--primary-color: #2563eb;
	--secondary-color: #64748b;
	--text-color: #1e293b;
	--light-gray: #f8fafc;
	--border-color: #e2e8f0;
	--white: #ffffff;
	--success-color: #10b981;
	--font-primary: 'Cal Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: 'Space Mono', monospace;
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--white);
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.nav-logo {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	font-family: var(--font-mono);
}

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

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

.nav-link {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
	margin-bottom: 10px;
	color: var(--text-color);
}

.cookie-content p {
	margin-bottom: 15px;
	color: var(--secondary-color);
}

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

.cookie-buttons .btn {
	padding: 8px 16px;
}

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

.btn-primary {
	background: var(--primary-color);
	color: var(--white);
}

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

.btn-secondary {
	background: var(--secondary-color);
	color: var(--white);
}

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

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: var(--white);
}

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

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

/* Hero Section */
.hero {
	padding: 150px 0 100px;
	background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
	text-align: center;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--secondary-color);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

/* About Hero */
.about-hero {
	padding: 150px 0 100px;
	background: var(--light-gray);
	text-align: center;
}

/* Features Section */
.features {
	padding: 100px 0;
}

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.section-header p {
	font-size: 1.1rem;
	color: var(--secondary-color);
	max-width: 600px;
	margin: 0 auto;
}

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

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.feature-card p {
	color: var(--secondary-color);
	line-height: 1.6;
}

/* Text Section */
.text-section {
	padding: 100px 0;
	background: var(--light-gray);
}

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

.text-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.text-content p {
	font-size: 1.1rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

/* Story Section */
.story {
	padding: 100px 0;
}

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

.story-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.story-text p {
	font-size: 1.1rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

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

/* Approach Section */
.approach {
	padding: 100px 0;
	background: var(--light-gray);
}

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

.approach-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.approach-text p {
	font-size: 1.1rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

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

/* Impact Section */
.impact {
	padding: 100px 0;
}

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

.impact-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

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

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

.impact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.impact-card p {
	color: var(--secondary-color);
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: var(--light-gray);
}

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

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.contact-info > p {
	font-size: 1.1rem;
	color: var(--secondary-color);
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.contact-item strong {
	color: var(--text-color);
	font-weight: 600;
}

.contact-item p {
	color: var(--secondary-color);
	margin-top: 0.5rem;
}

.contact-form-container {
	background: var(--white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 6px;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox styles */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--secondary-color);
}

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

.checkmark {
	position: relative;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border: 2px solid var(--border-color);
	border-radius: 4px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label:hover .checkmark {
	border-color: var(--primary-color);
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark:after {
	display: block;
}

.checkbox-label input[type='checkbox'].error ~ .checkmark {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Success Modal */
.form-success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-success-content {
	background: var(--white);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	background: var(--success-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
}

.loading-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

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

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

.faq-item {
	border-bottom: 1px solid var(--border-color);
	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: var(--primary-color);
}

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

.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: var(--secondary-color);
	line-height: 1.7;
}

/* Footer */
.footer {
	background: var(--text-color);
	color: var(--white);
	padding: 60px 0 20px;
}

.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: var(--white);
}

.footer-section p {
	color: #94a3b8;
	line-height: 1.6;
}

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

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

.footer-section ul li a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: var(--white);
}

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

/* Legal Pages */
.legal-page {
	padding: 120px 0 60px;
	max-width: 800px;
	margin: 0 auto;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.legal-page h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: var(--text-color);
}

.legal-page h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: var(--text-color);
}

.legal-page p {
	margin-bottom: 1rem;
	color: var(--secondary-color);
	line-height: 1.7;
}

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

.legal-page li {
	margin-bottom: 0.5rem;
	color: var(--secondary-color);
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: var(--white);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

	.approach-content {
		grid-template-rows: auto auto;
	}

	.approach-image {
		order: -1;
	}

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

	.features-grid,
	.impact-cards {
		grid-template-columns: 1fr;
	}

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

	.text-content h2,
	.story-text h2,
	.approach-text h2,
	.contact-info h2 {
		font-size: 2rem;
	}
}

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

	.hero {
		padding: 120px 0 80px;
	}

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

	.cookie-content {
		padding: 15px;
	}

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