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

body {
	font-family: 'Cal Sans', 'Noto Sans', -apple-system, BlinkMacSystemFont,
		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);
	border-bottom: 1px solid #eee;
	z-index: 1000;
	transition: all 0.3s ease;
}

.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-size: 1.2rem;
	font-weight: 600;
	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;
	font-weight: 500;
	transition: color 0.3s ease;
}

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

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

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

/* Mobile menu styles */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		z-index: 999;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.nav-menu.active {
		display: flex;
		transform: translateX(0);
	}

	.nav-link {
		font-size: 1.5rem;
		padding: 1rem 2rem;
		text-align: center;
		width: auto;
		border: none;
	}

	.nav-toggle {
		display: flex;
		z-index: 1001;
	}
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	z-index: 2000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-content {
	padding: 1.5rem;
}

.cookie-content h3 {
	margin-bottom: 0.5rem;
	color: #333;
}

.cookie-content p {
	margin-bottom: 1rem;
	color: #666;
	font-size: 0.9rem;
}

.cookie-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.cookie-link {
	font-size: 0.8rem;
	color: #999;
	text-decoration: underline;
}

/* Buttons */
.btn-primary {
	background: #333;
	color: white;
	padding: 0.75rem 1.5rem;
	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: #555;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #f5f5f5;
	color: #333;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

/* Sections */
section {
	padding: 4rem 0;
}

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

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

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

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

.text-content p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1.5rem;
}

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

.featured-stories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

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

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

.story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.story-image {
	height: 200px;
	background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

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

.story-content {
	padding: 1.5rem;
}

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

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

.story-meta {
	font-size: 0.9rem;
	color: #999;
}

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

.stories-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.story-categories {
	background: white;
}

.story-categories h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
	color: #333;
}

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

.category-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: white;
	border: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}

.category-card:hover {
	border-color: #ddd;
	transform: translateY(-3px);
}

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

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

.category-card p {
	color: #666;
	font-size: 0.9rem;
}

.all-stories {
	background: #f8f9fa;
}

.all-stories h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
	color: #333;
}

.stories-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.story-item {
	display: flex;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.story-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.story-item .story-image {
	max-width: 400px;
	height: 100%;
	background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

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

.story-item .story-content {
	flex: 1;
	padding: 2rem;
}

.story-item .story-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.story-item .category {
	background: #f0f0f0;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	color: #666;
}

.story-item .read-time {
	color: #999;
	font-size: 0.8rem;
}

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

/* Contact Section */
.contact {
	background: white;
}

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

.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.emoji {
	font-size: 1.2rem;
}

.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: 500;
	color: #333;
}

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

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

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Checkbox styling */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 0;
	margin-top: 0.2rem;
}

.checkbox-label:hover {
	color: #555;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

.faq h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
	color: #333;
}

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

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

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	color: #666;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

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

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

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

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

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

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

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

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

/* Legal Pages */
.legal-page {
	padding: 6rem 0 4rem;
	min-height: 80vh;
}

.legal-page .container {
	max-width: 800px;
}

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

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #333;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #444;
}

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

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

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

.legal-page strong {
	color: #333;
}

/* Form Success/Error Messages */
.form-message {
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	display: none;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Form Modal */
.form-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: 3000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

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

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

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

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

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

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

.error-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #dc3545;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		z-index: 999;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.nav-menu.active {
		display: flex;
		transform: translateX(0);
	}

	.nav-link {
		font-size: 1.5rem;
		padding: 1rem 2rem;
		text-align: center;
		width: auto;
		border: none;
	}

	.nav-toggle {
		display: flex;
		z-index: 1001;
	}

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

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

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

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

	.story-item {
		flex-direction: column;
	}

	.story-item .story-image {
		width: 100%;
	}

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

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

	.cookie-modal {
		left: 10px;
		right: 10px;
	}
}

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

	.hero {
		padding: 6rem 0 2rem;
	}

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

	.contact-form {
		padding: 1.5rem;
	}

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

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

/* Loading States */
.loading {
	opacity: 0.6;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #333;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}
