* {
	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 Styles */
header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px !important;
}

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

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

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

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

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

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

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

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

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

/* Section Animation */
.section-animate {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

.cta-button {
	display: inline-block;
	background: #2563eb;
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

/* About Section */
.about {
	padding: 4rem 0;
}

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

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
}

.about-text p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #64748b;
}

.about-emoji span {
	font-size: 4rem;
}

/* Stories Preview Section */
.stories-preview {
	padding: 4rem 0;
	background: #f8fafc;
}

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

.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 4px 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 8px 30px 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: #1e293b;
}

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

.read-more {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
}

.read-more:hover {
	text-decoration: underline;
}

/* FAQ Section */
.faq {
	padding: 4rem 0;
}

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

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

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

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

.faq-question h3 {
	font-size: 1.2rem;
	color: #1e293b;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #2563eb;
	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;
	padding-bottom: 1.5rem;
}

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

/* Contact Section */
.contact {
	padding: 4rem 0;
	background: #f8fafc;
}

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

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

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

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

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

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

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 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: #1e293b;
}

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

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

.submit-btn {
	width: 100%;
	background: #2563eb;
	color: white;
	padding: 1rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #1d4ed8;
}

/* Checkbox Styling */
.checkbox-group {
	margin-bottom: 1.5rem;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #374151;
}

.checkbox-label input[type='checkbox'] {
	width: 18px;
	height: 18px;
	margin: 0;
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	border: 2px solid #d1d5db;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease;
	margin-top: 2px;
}

.checkbox-label:hover input ~ .checkmark {
	border-color: #2563eb;
}

.checkbox-label input:checked ~ .checkmark {
	background-color: #2563eb;
	border-color: #2563eb;
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 5px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
	display: block;
}

/* Stories Page Specific Styles */
.stories-hero {
	padding: 3rem 0;
	text-align: center;
	background: #f8fafc;
}

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

.stories-hero p {
	font-size: 1.1rem;
	color: #64748b;
	max-width: 800px;
	margin: 0 auto;
}

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

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

.featured-image img {
	width: 100%;
	border-radius: 12px;
}

.featured-label {
	background: #2563eb;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

.featured-text h2 {
	font-size: 2rem;
	margin: 1rem 0;
	color: #1e293b;
}

.featured-text p {
	color: #64748b;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.story-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #64748b;
	font-size: 0.875rem;
	margin-top: 1rem;
}

.text-story {
	padding: 4rem 0;
	background: #f8fafc;
}

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

.text-story-content h2 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.story-author {
	margin-bottom: 2rem;
	font-style: italic;
	color: #64748b;
}

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

.career-journey {
	padding: 4rem 0;
}

.journey-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
	align-items: center;
}

.journey-emoji span {
	font-size: 4rem;
}

.journey-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.journey-text p {
	color: #64748b;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.startup-failure {
	padding: 4rem 0;
	background: #f8fafc;
}

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

.failure-image img {
	width: 100%;
	border-radius: 12px;
}

.failure-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.failure-text p {
	color: #64748b;
	margin-bottom: 1rem;
	line-height: 1.6;
}

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

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

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

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

.team-story:hover {
	transform: translateY(-5px);
}

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

.team-story h3 {
	padding: 1rem 1.5rem 0.5rem;
	color: #1e293b;
}

.team-story p {
	padding: 0 1.5rem;
	color: #64748b;
	margin-bottom: 1rem;
}

.story-tag {
	display: inline-block;
	background: #e2e8f0;
	color: #475569;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	margin: 0 1.5rem 1.5rem;
}

/* Cookie Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	max-width: 500px;
	margin: 0 20px;
	text-align: center;
}

.modal-content h3 {
	margin-bottom: 1rem;
	color: #1e293b;
}

.modal-content p {
	margin-bottom: 1.5rem;
	color: #64748b;
}

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

.btn-primary {
	background: #2563eb;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}

.btn-secondary {
	background: #e5e7eb;
	color: #374151;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}

/* Success Modal */
.success-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.success-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	max-width: 400px;
	margin: 0 20px;
	text-align: center;
	position: relative;
}

.loading-spinner {
	border: 3px solid #f3f4f6;
	border-top: 3px solid #2563eb;
	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 {
	width: 40px;
	height: 40px;
	background: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
	display: none;
}

.success-modal h3 {
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.success-modal p {
	color: #64748b;
	margin: 0;
}

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

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

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

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

.legal-page h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.legal-page p {
	margin-bottom: 1rem;
	color: #64748b;
	line-height: 1.6;
}

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

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

/* Footer */
footer {
	background: #1e293b;
	color: white;
	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 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #cbd5e1;
	line-height: 1.6;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		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;
		gap: 1rem;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

	.hero {
		padding: 2rem 0;
	}

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

	.about,
	.stories-preview,
	.faq,
	.contact,
	.featured-story,
	.text-story,
	.career-journey,
	.startup-failure,
	.team-stories {
		padding: 2rem 0;
	}

	.contact-form {
		padding: 1.5rem;
	}

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