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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 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;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	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-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;
}

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

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

.checkbox-label .checkmark {
	flex-shrink: 0;
	margin-top: 2px;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/hero-background.png') center/cover no-repeat;
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

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

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

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

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: #333;
	color: white;
	border-color: #333;
}

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

.btn-secondary {
	background: #666;
	color: white;
	border-color: #666;
}

.btn-secondary:hover {
	background: #777;
	border-color: #777;
}

.btn-outline {
	background: transparent;
	color: white;
	border-color: white;
}

.btn-outline:hover {
	background: white;
	color: #333;
	transform: translateY(-2px);
}

/* Sections */
section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

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

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

.about-text h3 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

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

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

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

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

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

.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 textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

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

.contact-info h3 {
	margin-bottom: 2rem;
	color: #333;
}

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

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

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

/* Stories Page */
.stories-hero {
	padding: 120px 0 80px;
	text-align: center;
}

.stories-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	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 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 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-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.story-category {
	background: #f0f0f0;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 500;
}

.story-date {
	color: #666;
}

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

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

.story-author {
	font-size: 0.875rem;
	color: #888;
	font-style: italic;
}

/* Story Categories */
.story-categories {
	background: #f8f9fa;
}

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

.categories-text h3 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

.categories-grid {
	display: grid;
	gap: 1.5rem;
}

.category-item {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-item h4 {
	margin-bottom: 0.5rem;
	color: #333;
}

.category-item p {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
}

/* FAQ Section */
.faq-content {
	max-width: 800px;
	margin: 0 auto;
}

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

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

.faq-question:hover {
	color: #666;
}

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #666;
	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, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding-bottom: 1.5rem;
}

.faq-answer p {
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	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;
}

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

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

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

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

/* Form Success */
.form-success {
	background: #f0f8f0;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	border: 2px solid #4caf50;
}

.form-success h3 {
	color: #4caf50;
	margin-bottom: 1rem;
}

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

/* Form Success Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	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;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	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 {
	color: #666;
	margin-bottom: 1.5rem;
}

.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;
	background: #4caf50;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 24px;
}

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

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

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

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

.footer-column a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

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

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

/* Legal Pages */
.legal-page {
	padding-top: 100px;
	min-height: 100vh;
}

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

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

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

.legal-content h3 {
	font-size: 1.25rem;
	margin: 1.5rem 0 0.5rem;
	color: #333;
}

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

.legal-content ul {
	margin-bottom: 1rem;
	color: #666;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
	line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 1rem 0;
		border-top: 1px solid #eee;
	}

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

	.nav-menu .nav-link {
		padding: 0.75rem 2rem;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu .nav-link:last-child {
		border-bottom: none;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

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

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

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

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

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

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

	section {
		padding: 60px 0;
	}

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

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

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

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

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

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

	.cookie-modal {
		padding: 1rem;
	}
}

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

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