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

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

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

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

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.nav-link {
	text-decoration: none;
	color: #666;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #007bff;
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	display: none;
	padding: 20px;
}

.cookie-modal.show {
	display: block;
}

.cookie-content {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.cookie-content h3 {
	margin-bottom: 15px;
	color: #333;
}

.cookie-content p {
	margin-bottom: 20px;
	color: #666;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.btn-accept,
.btn-decline {
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

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

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

.btn-decline {
	background: #6c757d;
	color: white;
}

.btn-decline:hover {
	background: #545b62;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	min-height: 70vh;
	display: flex;
	align-items: center;
}

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

.hero-content h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	line-height: 1.2;
}

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

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

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

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

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

.stories-hero .container {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.stories-hero .hero-content {
	text-align: left;
}

.stories-hero h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}

.stories-hero p {
	font-size: 1.2rem;
	color: #666;
}

.hero-emoji .emoji {
	font-size: 4rem;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
}

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

/* About Section */
.about {
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
}

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

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

.about-emoji .emoji {
	font-size: 4rem;
}

/* Features Section */
.features {
	background: #f8f9fa;
}

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

.feature-card {
	background: white;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.feature-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #333;
}

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

/* Stories Grid */
.featured-stories {
	background: white;
}

.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

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

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

.story-card.featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.story-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.story-content {
	padding: 25px;
}

.story-category {
	background: #007bff;
	color: white;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 0.8rem;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 15px;
}

.story-content h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #333;
}

.story-content p {
	color: #666;
	margin-bottom: 20px;
}

.story-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: #999;
}

/* Text-only sections */
.story-categories {
	background: #f8f9fa;
}

.categories-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Success Stories */
.success-stories {
	background: white;
}

.success-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.success-text h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #333;
}

.success-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
}

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

/* Community Impact */
.community-impact {
	background: #f8f9fa;
}

.impact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.impact-stats {
	display: grid;
	gap: 30px;
}

.stat-item {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #007bff;
	margin-bottom: 10px;
}

.stat-item p {
	color: #666;
}

.impact-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
}

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

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

.faq-item {
	margin-bottom: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.faq-question {
	width: 100%;
	background: white;
	border: none;
	padding: 20px;
	text-align: left;
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

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

.faq-answer {
	display: none;
	padding: 0 20px 20px;
}

.faq-answer.active {
	display: block;
}

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

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info {
	display: grid;
	gap: 30px;
}

.contact-item h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: #333;
}

.contact-item p {
	color: #666;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	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;
}

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

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	padding: 0;
}

.checkmark {
	min-width: 18px;
	height: 18px;
	background: white;
	border: 2px solid #ddd;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background: #007bff;
	border-color: #007bff;
}

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: -2px;
	left: 2px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-container input[type='checkbox'] {
	display: none;
}

.submit-btn {
	background: #007bff;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

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

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

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

.footer-group h4 {
	margin-bottom: 15px;
	color: white;
}

.footer-group a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

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

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

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

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

.last-updated {
	color: #666;
	margin-bottom: 40px;
	font-style: italic;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 40px 0 20px;
	color: #333;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 30px 0 15px;
	color: #333;
}

.legal-page p {
	margin-bottom: 15px;
	color: #666;
	line-height: 1.7;
}

.legal-page ul {
	margin: 15px 0 15px 30px;
	color: #666;
}

.legal-page li {
	margin-bottom: 8px;
}

/* Form Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	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: 40px;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

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

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

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

.form-modal-loading h3,
.form-modal-success h3 {
	margin-bottom: 10px;
	color: #333;
	font-size: 1.4rem;
}

.form-modal-loading p,
.form-modal-success p {
	color: #666;
	margin: 0;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 30px;
	font-weight: bold;
}

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

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

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

	.hero .container,
	.stories-hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.about-content,
	.success-content,
	.impact-content,
	.contact-content,
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.story-card.featured {
		grid-column: span 1;
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

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

	.legal-page {
		padding: 120px 20px 80px;
	}
}

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

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

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

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

	.contact-form {
		padding: 30px 20px;
	}
}
