:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--accent-color: #e74c3c;
	--text-color: #333;
	--text-light: #666;
	--bg-color: #fff;
	--bg-light: #f8f9fa;
	--border-color: #e9ecef;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

* {
	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: var(--text-color);
	background-color: var(--bg-color);
}

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

/* Header */
.header {
	background: var(--bg-color);
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

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

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transition);
}

.nav-menu a:hover {
	color: var(--secondary-color);
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	margin: 3px 0;
	transition: var(--transition);
}

/* Buttons */
.btn-primary {
	background: var(--secondary-color);
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	transition: var(--transition);
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
	padding: 120px 0 80px;
	text-align: center;
}

.hero-content {
	position: relative;
}

.hero-image {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 15px;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2rem;
}

/* Stories Hero */
.stories-hero {
	background: var(--bg-light);
	padding: 120px 0 80px;
	text-align: center;
}

.stories-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

/* About Section */
.about {
	padding: 80px 0;
	background: var(--bg-color);
}

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

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
	text-align: center;
}

.about p {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 800px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

/* Features Section */
.features {
	padding: 80px 0;
	background: var(--bg-light);
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary-color);
}

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

.feature-card {
	background: var(--bg-color);
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px 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: var(--primary-color);
}

/* Stories Grid */
.stories-grid {
	padding: 80px 0;
	background: var(--bg-color);
}

.stories-grid h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary-color);
}

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

.story-card {
	background: var(--bg-color);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

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

.story-image {
	height: 200px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.story-card:hover .story-image img {
	transform: scale(1.05);
}

.story-content {
	padding: 1.5rem;
}

.story-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.story-meta {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	font-style: italic;
}

.read-more {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.read-more:hover {
	color: var(--primary-color);
}

/* Career Transitions */
.career-transitions {
	padding: 80px 0;
	background: var(--bg-light);
}

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

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.section-header p {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.transition-story {
	background: var(--bg-color);
	padding: 2.5rem;
	margin-bottom: 2.5rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2.5rem;
	align-items: start;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.transition-story:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border-color: var(--secondary-color);
}

.transition-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	transition: var(--transition);
}

.transition-story:hover .transition-image {
	transform: scale(1.02);
}

.transition-story h3 {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
	color: var(--primary-color);
	line-height: 1.3;
}

.transition-story p {
	margin-bottom: 1.2rem;
	line-height: 1.8;
}

.transition-story p:first-of-type {
	font-weight: 600;
	color: var(--secondary-color);
	font-size: 1.05rem;
}

/* Startup Life */
.startup-life {
	padding: 80px 0;
	background: var(--bg-color);
}

.startup-life h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary-color);
}

.startup-story {
	max-width: 800px;
	margin: 0 auto;
	background: var(--bg-light);
	padding: 2rem;
	border-radius: 10px;
}

.story-header h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.author {
	color: var(--text-light);
	font-style: italic;
	margin-bottom: 1.5rem;
}

.story-text p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1.1rem;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: var(--bg-light);
}

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

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.contact-info p {
	color: var(--text-light);
	margin-bottom: 2rem;
}

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

.contact-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

/* Forms */
.contact-form {
	background: var(--bg-color);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group.checkbox-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
	font-weight: 500;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-weight: normal !important;
	color: var(--text-color) !important;
	line-height: 1.5;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.checkbox-label:hover .checkmark {
	border-color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 5px;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 5px;
	display: none;
}

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

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

/* Footer */
.footer {
	background: var(--primary-color);
	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;
}

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

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

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

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

.legal-page h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.legal-page h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.legal-page p,
.legal-page li {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: var(--text-light);
}

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	color: white;
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: var(--transition);
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

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

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

.btn-accept,
.btn-decline {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}

.btn-accept {
	background: white;
	color: var(--primary-color);
}

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

.btn-accept:hover {
	background: var(--bg-light);
}

.btn-decline:hover {
	background: white;
	color: var(--primary-color);
}

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

.success-modal-content {
	background-color: var(--bg-color);
	margin: 15% auto;
	padding: 2rem;
	border-radius: 15px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	position: relative;
	animation: slideIn 0.3s ease-out;
}

.success-modal-content h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.success-modal-content p {
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--secondary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

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

.modal-content {
	background-color: var(--bg-color);
	margin: 5% auto;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
}

.close {
	color: var(--text-light);
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: var(--text-color);
}

.faq-item {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--bg-color);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: var(--shadow);
		padding: 2rem 0;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

	.nav-toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

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

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

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

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}

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

	.modal-content {
		margin: 10% auto;
		width: 95%;
		padding: 1.5rem;
	}

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

	.transition-story {
		grid-template-columns: 1fr;
		padding: 2rem;
		gap: 1.5rem;
	}

	.transition-image {
		height: 200px;
	}
}

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

	.hero,
	.stories-hero {
		padding: 100px 0 60px;
	}

	.about,
	.features,
	.stories-grid,
	.career-transitions,
	.startup-life,
	.contact {
		padding: 60px 0;
	}

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

	.about h2,
	.features h2,
	.stories-grid h2,
	.section-header h2,
	.startup-life h2 {
		font-size: 2rem;
	}
}
