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

:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--accent-color: #3b82f6;
	--text-dark: #1e293b;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--white: #ffffff;
	--border-color: #e2e8f0;
	--success-color: #10b981;
	--error-color: #ef4444;
	--warning-color: #f59e0b;
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

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

.section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

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

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

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

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

.nav-menu {
	display: flex;
	gap: 30px;
}

.nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero-content h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-content p {
	font-size: clamp(1rem, 2vw, 1.25rem);
	margin: 0 auto 30px;
	max-width: 600px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.7s forwards;
}

.cta-button {
	background: var(--primary-color);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0;
	animation: fadeInUp 1s ease 0.9s forwards;
}

.cta-button:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.features h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

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

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--text-dark);
}

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

/* Showcase Section */
.showcase-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.showcase-text h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: var(--text-dark);
}

.showcase-text p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.feature-list {
	list-style: none;
	margin-top: 30px;
}

.feature-list li {
	padding: 8px 0;
	color: var(--text-light);
	font-size: 1.1rem;
}

.showcase-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
	background: var(--bg-light);
}

.faq h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

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

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: var(--bg-light);
}

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

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

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

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

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

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

/* Contact Section */
.contact h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: var(--text-dark);
}

.contact-item {
	margin-bottom: 25px;
}

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

.contact-item p {
	color: var(--text-light);
}

.contact-form {
	background: var(--bg-light);
	padding: 40px;
	border-radius: 12px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	background: white;
}

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

.submit-btn {
	background: var(--primary-color);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

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

.checkbox-group label {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.4;
	cursor: pointer;
}

.checkbox-group input[type='checkbox']:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
	background: var(--bg-light);
	text-align: center;
	padding: 120px 0 80px;
}

.about-hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--text-dark);
}

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

.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.story-text h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: var(--text-dark);
}

.story-text p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.story-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team {
	background: var(--bg-light);
}

.team h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

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

.team-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 20px;
	object-fit: cover;
}

.team-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.3rem;
	margin-bottom: 5px;
	color: var(--text-dark);
}

.role {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

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

.values h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

.values-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.value-item {
	text-align: center;
	padding: 20px;
}

.value-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.value-item h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--text-dark);
}

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

.impact {
	background: var(--bg-light);
}

.impact h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.stat-item {
	text-align: center;
	background: white;
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.stat-item p {
	color: var(--text-light);
	font-weight: 600;
}

.impact-description {
	text-align: center;
	color: var(--text-light);
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.future h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: var(--text-dark);
	text-align: center;
}

.future-content p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 1.1rem;
	text-align: center;
}

.future-list {
	list-style: none;
	max-width: 800px;
	margin: 30px auto;
}

.future-list li {
	padding: 15px 0;
	color: var(--text-light);
	font-size: 1.1rem;
	border-bottom: 1px solid var(--border-color);
}

.future-list li:last-child {
	border-bottom: none;
}

.future-list strong {
	color: var(--primary-color);
}

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

.legal-page h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.last-updated {
	color: var(--text-light);
	margin-bottom: 40px;
	font-style: italic;
}

.legal-content h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin: 40px 0 20px;
	color: var(--text-dark);
}

.legal-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.3rem;
	margin: 30px 0 15px;
	color: var(--text-dark);
}

.legal-content p {
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.6;
}

.legal-content ul {
	color: var(--text-light);
	margin: 20px 0;
	padding-left: 30px;
}

.legal-content li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.legal-content strong {
	color: var(--text-dark);
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 30px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
	font-family: 'Cal Sans', sans-serif;
	margin-bottom: 10px;
	color: var(--text-dark);
}

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

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.btn-accept,
.btn-reject {
	padding: 10px 20px;
	border: 2px solid var(--primary-color);
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-accept:hover {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}

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

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

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

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

.form-success-modal .modal-content {
	background: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

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

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

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

.success-checkmark {
	width: 60px;
	height: 60px;
	background: var(--success-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	font-weight: bold;
	margin: 0 auto 20px;
	transform: scale(0);
	animation: checkmarkPop 0.5s ease forwards;
}

@keyframes checkmarkPop {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.modal-content.success h3 {
	color: var(--success-color);
	margin-bottom: 10px;
}

.modal-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.modal-content p {
	color: var(--text-light);
	margin: 0;
}

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

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

.footer-section h3,
.footer-section h4 {
	font-family: 'Cal Sans', sans-serif;
	margin-bottom: 20px;
	color: white;
}

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

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

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #334155;
	color: #94a3b8;
}

/* Form Success Message */
.form-success {
	background: var(--success-color);
	color: white;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
	display: none;
}

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

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

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
	}

	.showcase-content,
	.story-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.features-grid,
	.team-grid,
	.values-content {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.features h2,
	.faq h2,
	.contact h2,
	.about-hero h1,
	.team h2,
	.values h2,
	.impact h2,
	.future h2 {
		font-size: 2rem;
	}

	.showcase-text h2,
	.story-text h2 {
		font-size: 2rem;
	}
}

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

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

	.cookie-modal {
		padding: 20px 15px;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.btn-accept,
	.btn-reject {
		flex: 1;
		max-width: 120px;
	}
}
