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

:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--text-color: #333;
	--text-light: #666;
	--background-color: #fff;
	--border-color: #e1e1e1;
	--success-color: #27ae60;
	--error-color: #e74c3c;
	--font-primary: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
}

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

/* Header Styles */
.header {
	background: var(--background-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
	font-weight: 700;
}

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

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

.btn-primary:hover {
	background: #2980b9;
	transform: translateY(-2px);
}

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

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

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.about p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.about-emoji .emoji {
	font-size: 6rem;
	display: block;
	text-align: center;
}

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

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

.stories-grid {
	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 15px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

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

.story-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

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

.read-more:hover {
	color: #2980b9;
}

/* Stories Page Styles */
.stories-hero {
	padding: 120px 0 60px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.stories-hero p {
	font-size: 1.2rem;
	color: var(--text-light);
}

.career-transitions {
	padding: 80px 0;
}

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

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

.section-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.section-emoji .emoji {
	font-size: 6rem;
	display: block;
	text-align: center;
}

.remote-work {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.image-content img {
	width: 100%;
	border-radius: 10px;
}

.innovation-stories {
	padding: 80px 0;
}

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

.section-intro {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	text-align: center;
}

.innovation-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

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

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

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

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

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

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

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

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

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

.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-group-checkbox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.form-group-checkbox input[type='checkbox'] {
	width: auto;
	accent-color: var(--secondary-color);
}

.form-group-checkbox label {
	display: inline;
	margin-bottom: 0;
	font-weight: normal;
	color: var(--text-light);
	font-size: 0.9rem;
}

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

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

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

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

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

.faq-question:hover {
	color: var(--secondary-color);
}

.faq-question h3 {
	font-size: 1.2rem;
	color: var(--primary-color);
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--secondary-color);
	transition: var(--transition);
}

.faq-answer {
	padding: 0 0 1.5rem 0;
	display: none;
}

.faq-answer.active {
	display: block;
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Cookie Modal */
.cookie-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: 10000;
}

.cookie-modal.hidden {
	display: none;
}

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

.cookie-content h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

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

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

.btn-accept {
	background: var(--success-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}

.btn-accept:hover {
	background: #229954;
}

.btn-decline {
	background: var(--error-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}

.btn-decline:hover {
	background: #c0392b;
}

/* Form submission modal */
.form-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 400px;
	margin: 20px;
	text-align: center;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal-content h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

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

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--secondary-color);
	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: var(--success-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 2rem;
	color: white;
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

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

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

.footer-section a {
	color: #bdc3c7;
	text-decoration: none;
	transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

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

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

	.hero {
		padding: 100px 0 60px;
	}

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

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

	.about h2,
	.featured-stories h2,
	.stories-hero h1,
	.section-content h2,
	.innovation-stories h2,
	.contact h2,
	.faq h2 {
		font-size: 2rem;
	}

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

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

	.story-card {
		margin: 0 10px;
	}
}

h1,
h2 {
	font-size: 1.5rem;
}
