@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

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

/* Header */
header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

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

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

.logo img {
	height: 40px;
	width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 20px;
	justify-content: space-between;
	align-items: center;
	z-index: 1001;
}

.mobile-menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: #333;
	transition: all 0.3s ease;
	transform-origin: center;
}

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

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

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

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

/* Main Content */
main {
	margin-top: 80px;
}

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

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
}

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

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

.cta-button {
	display: inline-block;
	background: #fff;
	color: #667eea;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Stories Hero */
.stories-hero {
	background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.stories-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.stories-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
}

/* Featured Stories */
.featured-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

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

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

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

.read-more {
	color: #007bff;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.read-more:hover {
	color: #0056b3;
}

/* About Section */
.about {
	padding: 80px 0;
	background: white;
}

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

.about-text {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: #555;
}

/* Success Stories */
.success-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.story-full {
	background: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.story-header {
	margin-bottom: 1.5rem;
}

.story-header h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: #2c3e50;
}

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

.story-meta span {
	margin-right: 0.5rem;
}

.story-full .story-image {
	margin-bottom: 1.5rem;
}

.story-full .story-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 8px;
}

.story-content p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
}

/* Challenges Section */
.challenges {
	padding: 80px 0;
	background: white;
}

.challenges h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #2c3e50;
}

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

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

/* Startup Stories */
.startup-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

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

/* Product Stories */
.product-stories {
	padding: 80px 0;
	background: white;
}

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

/* Industry Evolution */
.industry-evolution {
	padding: 80px 0;
	background: #f8f9fa;
}

.industry-evolution h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
}

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

.evolution-text h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

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

.trend-cards {
	display: grid;
	gap: 1.5rem;
}

.trend-card {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.trend-card:hover {
	transform: translateY(-3px);
}

.trend-icon img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
}

.trend-card h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #2c3e50;
}

.trend-card p {
	color: #666;
	font-size: 0.95rem;
}

/* Community Stories */
.community-stories {
	padding: 80px 0;
	background: white;
}

.community-stories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.community-stories > .container > p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #555;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.community-item {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.community-item:hover {
	transform: translateY(-5px);
}

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

.community-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.community-item p {
	color: #666;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #f8f9fa;
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.contact > .container > p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #555;
}

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

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

.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: 12px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	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: #007bff;
}

.submit-btn {
	background: #007bff;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.contact-info {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	height: fit-content;
}

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #2c3e50;
}

.contact-details p {
	margin-bottom: 1rem;
	color: #555;
	line-height: 1.6;
}

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

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: white;
}

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

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

.faq-item {
	background: #f8f9fa;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	color: #007bff;
	font-weight: bold;
	transition: transform 0.3s ease;
}

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

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
	color: #555;
	line-height: 1.6;
}

/* Footer */
footer {
	background: #2c3e50;
	color: white;
	padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: #ecf0f1;
}

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

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

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

.footer-section a:hover {
	color: #3498db;
}

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	max-width: 400px;
	z-index: 10000;
	display: none;
}

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

.cookie-content h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #2c3e50;
}

.cookie-content p {
	margin-bottom: 15px;
	color: #555;
	font-size: 0.9rem;
	line-height: 1.5;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.cookie-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}

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

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

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

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

/* Success Message */
.success-message {
	display: none;
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
}

.success-message.show {
	display: block;
}

/* Success Modal */
.success-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: 10001;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.success-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
}

.success-modal h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

.success-modal p {
	color: #666;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1,
	.stories-hero h1 {
		font-size: 2rem;
	}

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

	.story-cards {
		grid-template-columns: 1fr;
	}

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

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

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

	/* Mobile Menu Styles */
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		gap: 0;
		padding: 80px 2rem 2rem;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1000;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu li {
		margin-bottom: 1rem;
	}

	.nav-menu a {
		display: block;
		padding: 1rem 0;
		font-size: 1.1rem;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu a:hover {
		color: #007bff;
		background: #f8f9fa;
		padding-left: 1rem;
	}

	.nav-container {
		padding: 15px 20px;
	}

	main {
		margin-top: 80px;
	}

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

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

	.hero,
	.stories-hero,
	.featured-stories,
	.about,
	.success-stories,
	.challenges,
	.startup-stories,
	.product-stories,
	.industry-evolution,
	.community-stories,
	.contact,
	.faq {
		padding: 40px 0;
	}

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

	.trend-card,
	.community-item {
		padding: 1.5rem;
	}
}

/* Legal Content Styles */
.legal-content {
	padding: 40px 0 80px;
	background: white;
}

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

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

.legal-content h3 {
	font-size: 1.3rem;
	margin: 1.5rem 0 0.5rem;
	color: #34495e;
}

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

.legal-content ul {
	margin: 1rem 0 1rem 2rem;
	color: #555;
}

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

.legal-content strong {
	color: #2c3e50;
}
