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

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

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	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;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	color: #333;
}

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

.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 {
	color: #0066cc;
}

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

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

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

.btn-primary {
	background-color: #0066cc;
	color: white;
}

.btn-primary:hover {
	background-color: #0052a3;
	transform: translateY(-2px);
}

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

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

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

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

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

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

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

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

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

.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: #f8f9fa;
	transition: transform 0.3s ease;
}

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

.feature-image {
	margin-bottom: 1.5rem;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-img {
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
}

.emoji {
	font-size: 3rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

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

/* Success Stories Section */
.success-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.story-image {
	text-align: center;
}

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

.story-text h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.story-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #0066cc;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

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

.contact-info h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

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

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

.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
}

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

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

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

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

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	font-weight: normal !important;
	cursor: pointer;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 4px 0 0 0;
	flex-shrink: 0;
}

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

.faq-item {
	background: white;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
}

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0066cc;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 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);
}

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.about-hero .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.about-hero .hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.1;
}

.about-hero .container {
	position: relative;
	z-index: 2;
}

.about-hero h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

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

.our-story {
	padding: 80px 0;
}

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

.story-content .story-image {
	text-align: center;
}

.story-content .story-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.story-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

.our-approach {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.approach-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease;
}

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

.approach-image {
	margin-bottom: 1.5rem;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.approach-img {
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
}

.approach-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: #0066cc;
}

.impact {
	padding: 80px 0;
}

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

.impact-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	font-weight: 700;
}

.impact-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
	text-align: left;
}

.impact-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.impact-stat {
	text-align: center;
}

.impact-stat h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0066cc;
	margin-bottom: 0.5rem;
}

.impact-stat p {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

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

.legal-page h3 {
	font-size: 1.3rem;
	margin: 1.5rem 0 0.5rem;
	font-weight: 600;
}

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

.legal-page ul,
.legal-page ol {
	margin: 1rem 0 1rem 2rem;
	color: #666;
}

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

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

/* 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 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-section h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	color: white;
	text-align: center;
}

.cookie-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

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

.cookie-content a {
	color: #0066cc;
	text-decoration: none;
}

.cookie-content a:hover {
	text-decoration: underline;
}

/* Form Success Message */
.form-success {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	text-align: center;
	display: none;
}

.form-success.show {
	display: block;
}

/* Form Submission Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 16px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #0066cc;
	font-weight: 600;
}

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

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

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

/* Responsive Design */
@media screen and (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.approach-cards {
		grid-template-columns: 1fr;
	}

	.impact-stats {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

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

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

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

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

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

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

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

	.impact-stats {
		grid-template-columns: 1fr;
	}
}
