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

body {
	font-family: '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: sticky;
	top: 0;
	z-index: 100;
}

.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-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

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

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

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

.nav-menu a:hover {
	color: #0066cc;
}

/* Mobile Navigation */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	color: #333;
}

.mobile-menu-toggle:hover {
	color: #0066cc;
}

/* Buttons */
.btn-primary {
	background: #0066cc;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-secondary {
	background: #f5f5f5;
	color: #333;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

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

.hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #333;
}

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

/* Page Hero */
.page-hero {
	background: #f8f9fa;
	padding: 60px 0;
	text-align: center;
}

.page-hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.page-hero p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Sections */
section {
	padding: 60px 0;
}

section h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
	color: #333;
}

/* Featured Stories */
.featured-stories {
	background: #fff;
}

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

.story-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

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

.story-image {
	height: 200px;
	overflow: hidden;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-content {
	padding: 1.5rem;
}

.story-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #333;
}

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

.read-more {
	color: #0066cc;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.read-more:hover {
	color: #0052a3;
}

/* About Platform */
.about-platform {
	background: #f8f9fa;
}

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

.about-text h2 {
	margin-bottom: 1.5rem;
}

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

.emoji-highlight {
	margin-top: 2rem;
}

.emoji {
	font-size: 2rem;
	margin: 0 1rem;
	display: inline-block;
	animation: bounce 2s infinite;
}

.emoji:nth-child(2) {
	animation-delay: 0.5s;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Story Detail */
.story-detail {
	background: #fff;
	padding: 60px 0;
}

.story-header {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

.story-header img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.story-meta h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	text-align: left;
}

.author {
	font-weight: 500;
	color: #0066cc;
	margin-bottom: 0.25rem;
}

.location {
	color: #666;
	font-size: 0.9rem;
}

.story-text {
	margin: 0 auto;
}

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

/* Community Stories */
.community-stories {
	background: #f8f9fa;
}

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

.community-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.community-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.community-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1rem;
}

.community-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.community-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #333;
}

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

.story-stats {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #999;
	font-size: 0.9rem;
}

/* FAQ */
.faq {
	background: #fff;
}

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

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

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

.faq-question:hover {
	color: #0066cc;
}

.faq-answer {
	padding: 0 0 1.5rem 0;
	color: #666;
	line-height: 1.6;
	display: none;
}

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

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

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.contact-form {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background-color: #0066cc;
	border-color: #0066cc;
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-label:hover .checkmark {
	border-color: #0066cc;
}

.contact-info {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.contact-item {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.contact-item strong {
	color: #333;
}

/* Footer */
.footer {
	background: #333;
	color: #fff;
	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 {
	font-family: 'Cal Sans', sans-serif;
	margin-bottom: 1rem;
}

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

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

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

.legal-page h1 {
	text-align: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

.legal-content h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #333;
	text-align: left;
}

.legal-content h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

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

.legal-content ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.legal-content li {
	color: #666;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

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

.cookie-content {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
}

.cookie-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
}

.form-modal h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem auto;
	font-size: 2rem;
	color: white;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
}

.success-icon.show {
	opacity: 1;
	transform: scale(1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 99;
	}

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

	.nav-menu li {
		margin: 0.5rem 0;
	}

	.nav-menu a {
		display: block;
		padding: 0.5rem 0;
		text-align: center;
		border-bottom: 1px solid #eee;
	}

	.mobile-menu-toggle {
		display: block;
	}

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

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

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

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

	.story-header {
		flex-direction: column;
		text-align: center;
	}

	.story-meta h2 {
		text-align: center;
	}

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

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

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

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

	.hero {
		padding: 60px 0;
	}

	.page-hero {
		padding: 40px 0;
	}

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

	section h2 {
		font-size: 1.5rem;
	}

	.story-content,
	.contact-form,
	.contact-info {
		padding: 1.5rem;
	}

	.cookie-content {
		padding: 1.5rem;
	}
}
