/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
	font-family: 'Cal Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
	color: #000;
}

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

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 400;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #000;
	font-weight: 500;
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

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

.cookie-modal.show {
	display: block;
	animation: slideIn 0.3s ease;
}

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

.cookie-content p {
	font-size: 0.9rem;
	margin-bottom: 15px;
}

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

.btn-accept,
.btn-decline {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-accept {
	background-color: #000;
	color: #fff;
}

.btn-accept:hover {
	background-color: #333;
}

.btn-decline {
	background-color: #f5f5f5;
	color: #333;
}

.btn-decline:hover {
	background-color: #e5e5e5;
}

/* Form Success Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

.success-icon {
	width: 50px;
	height: 50px;
	background-color: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 24px;
	color: white;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
}

.success-icon.show {
	opacity: 1;
	transform: scale(1);
}

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

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

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

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

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

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

.hero-content h1 {
	color: #000;
	margin-bottom: 1.5rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #555;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

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

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

.about-text h2 {
	color: #000;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 10px;
}

.stat h3 {
	font-size: 2.5rem;
	color: #000;
	margin-bottom: 0.5rem;
}

.stat p {
	color: #666;
	font-weight: 500;
}

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

.featured h2 {
	text-align: center;
	color: #000;
	margin-bottom: 3rem;
}

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

.story-card {
	background: #fff;
	border-radius: 15px;
	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 10px 30px rgba(0, 0, 0, 0.15);
}

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

.story-content {
	padding: 1.5rem;
}

.story-content h3 {
	color: #000;
	margin-bottom: 0.5rem;
}

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

.story-role {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

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

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

.contact-info h2 {
	color: #000;
	margin-bottom: 1rem;
}

.contact-details {
	margin-top: 2rem;
}

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

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

.contact-form {
	background-color: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

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

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	color: #555;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin-right: 10px;
	margin-top: 2px;
	transform: scale(1.2);
}

.checkbox-label:hover {
	color: #000;
}

.form-success {
	background-color: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	margin-top: 1rem;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.faq h2 {
	text-align: center;
	color: #000;
	margin-bottom: 3rem;
}

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

.faq-item {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	color: #000;
	margin-bottom: 1rem;
}

/* Legal Pages Styles */
.legal-page {
	padding: 120px 0 80px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
}

.legal-page h1 {
	color: #000;
	margin-bottom: 2rem;
	font-size: 1.5rem;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 1rem;
}

.legal-page h2 {
	color: #000;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
}

.legal-page h3 {
	color: #333;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
	font-weight: 500;
}

.legal-page p {
	margin-bottom: 1.2rem;
	color: #555;
	text-align: justify;
}

.legal-page ul {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
	color: #555;
}

.legal-page li {
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.legal-page strong {
	color: #000;
	font-weight: 600;
}

.legal-page p:first-of-type {
	font-size: 1.1rem;
	color: #666;
	font-style: italic;
	border-left: 3px solid #f0f0f0;
	padding-left: 1rem;
	margin-bottom: 2rem;
}

/* Stories Page Specific Styles */
.stories-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #000 0%, #333 100%);
	color: #fff;
	text-align: center;
}

.stories-hero h1 {
	color: #fff;
}

.stories-hero p {
	color: #ccc;
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

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

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

.journey-text h3 {
	color: #000;
	margin-bottom: 1.5rem;
}

.journey-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.innovation-stories {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

.innovation-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.innovation-text h2 {
	color: #000;
}

.community-insights {
	padding: 80px 0;
}

.community-insights h2 {
	text-align: center;
	color: #000;
	margin-bottom: 3rem;
}

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

.insight-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease;
}

.insight-card:hover {
	transform: translateY(-5px);
}

.insight-card h3 {
	color: #000;
	margin-bottom: 1rem;
}

.success-stories {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.success-stories h2 {
	text-align: center;
	color: #000;
	margin-bottom: 3rem;
}

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

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

.success-card:hover {
	transform: translateY(-5px);
}

.success-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.success-content {
	padding: 1.5rem;
}

.success-content h3 {
	color: #000;
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.success-role {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.challenges-growth {
	padding: 80px 0;
}

.challenges-content h2 {
	color: #000;
	margin-bottom: 2rem;
	text-align: center;
}

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

/* Footer */
.footer {
	background-color: #000;
	color: #fff;
	padding: 60px 0 20px;
}

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

.footer-brand h3 {
	color: #fff;
	margin-bottom: 1rem;
}

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

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

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

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

.footer-column a:hover {
	color: #fff;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #fff;
		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;
	}

	.nav-toggle {
		display: flex;
	}

	.hero .container,
	.about-content,
	.contact-content,
	.journey-content,
	.innovation-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.innovation-content {
		grid-template-rows: auto auto;
	}

	.innovation-image {
		order: -1;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

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

	.insights-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

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

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

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

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

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

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

	.about,
	.featured,
	.contact,
	.faq,
	.career-journeys,
	.innovation-stories,
	.community-insights,
	.success-stories,
	.challenges-growth {
		padding: 60px 0;
	}
}
