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

body {
	font-family: 'Cal Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

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

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

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

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

.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,
.nav-menu a.active {
	color: #007bff;
}

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

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

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23667eea;stop-opacity:1" /><stop offset="100%" style="stop-color:%23764ba2;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="400" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="600" r="80" fill="rgba(255,255,255,0.1)"/></svg>');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
	font-size: 1.2rem;
	margin: 0 auto 2rem;
	max-width: 600px;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

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

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

/* About Section */
.about {
	padding: 6rem 0;
	background: #f8f9fa;
}

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

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
}

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

.about-emoji {
	text-align: center;
}

.about-emoji span {
	font-size: 8rem;
	opacity: 0.7;
}

/* Stories Preview */
.stories-preview {
	padding: 6rem 0;
}

.stories-preview h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

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

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

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

.story-image {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

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

.story-content {
	padding: 1.5rem;
}

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

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

.story-author {
	font-size: 0.9rem;
	color: #999;
	font-style: italic;
}

/* FAQ Section */
.faq {
	padding: 6rem 0;
	background: #f8f9fa;
}

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

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

.faq-item {
	background: white;
	border-radius: 10px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

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

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

.faq-question h3 {
	font-size: 1.1rem;
	color: #333;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #007bff;
	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;
}

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

/* Contact Section */
.contact {
	padding: 6rem 0;
}

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

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-info > p {
	color: #666;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

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

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

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

.contact-emoji {
	text-align: center;
	margin-top: 2rem;
}

.contact-emoji span {
	font-size: 4rem;
	opacity: 0.7;
}

/* Contact Form */
.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
}

.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: 0.75rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

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

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

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

/* Stories Page Specific */
.stories-hero {
	padding: 8rem 0 4rem;
	text-align: center;
	background: #f8f9fa;
}

.stories-hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

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

.featured-story {
	padding: 4rem 0;
}

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

.featured-badge {
	background: #007bff;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.featured-text h2 {
	font-size: 2.2rem;
	margin: 1rem 0;
}

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

.story-author-info {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

.story-author-info strong {
	display: block;
	color: #333;
}

.story-author-info span {
	color: #666;
	font-size: 0.9rem;
}

.featured-image {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 15px;
	position: relative;
}

.featured-image::after {
	content: '✍️';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4rem;
	opacity: 0.7;
}

.story-categories {
	padding: 4rem 0;
	background: #f8f9fa;
}

.story-categories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

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

.category-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

.category-icon span {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

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

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

.story-count {
	color: #007bff;
	font-weight: 600;
	font-size: 0.9rem;
}

.latest-stories {
	padding: 4rem 0;
}

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

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

.section-header p {
	color: #666;
	font-size: 1.1rem;
}

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

.story-item {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #eee;
}

.story-item:last-child {
	border-bottom: none;
}

.story-item-image {
	border-radius: 10px;
	position: relative;
}

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

.story-category {
	background: #e3f2fd;
	color: #1976d2;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

.story-item h3 {
	font-size: 1.4rem;
	margin: 1rem 0;
	color: #333;
}

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

.story-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.9rem;
	color: #999;
}

/* 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 {
	padding: 2rem;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

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

.cookie-content p {
	margin-bottom: 2rem;
	line-height: 1.6;
	opacity: 0.9;
}

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

.btn-accept,
.btn-decline {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

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

.btn-decline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-decline:hover {
	background: white;
	color: #333;
}

/* Form Submit Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}

.form-modal.show {
	display: flex;
}

.form-modal-content {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
}

.form-modal-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

.form-loader {
	display: none;
	margin: 2rem 0;
}

.form-modal.loading .form-loader {
	display: block;
}

.form-modal.loading .form-modal-text {
	opacity: 0.5;
}

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

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

.form-success-message {
	display: none;
	color: #28a745;
	font-weight: 600;
	font-size: 1.1rem;
	margin-top: 1rem;
}

.form-modal.success .form-success-message {
	display: block;
}

.form-modal.success .form-modal-text {
	display: none;
}

.form-modal.success .form-loader {
	display: none;
}

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

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

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

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

.legal-page h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
	border-bottom: 2px solid #007bff;
	padding-bottom: 0.5rem;
}

.legal-page h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

.contact-info {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1rem 0;
}

.contact-info p {
	margin-bottom: 0.5rem;
	color: #333;
}

/* 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(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

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

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

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

.footer-column ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #007bff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 60px;
		flex-direction: column;
		background-color: 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-content p {
		font-size: 1rem;
	}

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

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

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

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

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

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

	.legal-page {
		padding: 6rem 0 2rem;
	}
}

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

	.nav {
		padding: 1rem;
	}

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

	.about-text h2,
	.stories-preview h2,
	.faq h2,
	.contact-info h2 {
		font-size: 2rem;
	}

	.cookie-content {
		padding: 1.5rem;
	}

	.legal-page h1 {
		font-size: 2rem;
	}
}

/* Checkbox styling */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: normal !important;
	line-height: 1.5;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-radius: 3px;
	position: relative;
	margin: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

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

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

.checkbox-label input[type='checkbox']:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}
