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

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

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

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

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

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

.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: #007bff;
}

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

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 400px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.cookie-content h3 {
	margin-bottom: 10px;
	color: #333;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: #007bff;
	color: white;
}

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

.btn-secondary {
	background: transparent;
	color: #007bff;
	border: 2px solid #007bff;
}

.btn-secondary:hover {
	background: #007bff;
	color: white;
	transform: translateY(-2px);
}

/* Animations */
.animate-section {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.6s ease;
}

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

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

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 40px;
}

.hero-emoji {
	font-size: 4rem;
	margin-top: 40px;
}

/* Page Hero */
.page-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f9fa;
}

.page-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

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

/* Features Section */
.features {
	padding: 80px 0;
	background: #fff;
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #333;
}

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

.feature-card {
	text-align: center;
	padding: 40px 20px;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

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

.feature-card img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 10px;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

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

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

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #333;
}

.about-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.7;
}

.stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.stat {
	text-align: center;
}

.stat h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #007bff;
	margin-bottom: 5px;
}

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

.about-emoji {
	font-size: 8rem;
	text-align: center;
}

/* Mission Section */
.mission {
	padding: 80px 0;
	background: #fff;
}

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

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

.mission-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #333;
}

.mission-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.7;
}

/* Values Section */
.values {
	padding: 80px 0;
	background: #f8f9fa;
}

.values h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #333;
}

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

.value-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.value-card img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 10px;
}

.value-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.value-card p {
	color: #666;
	line-height: 1.6;
}

/* Team Story */
.team-story {
	padding: 80px 0;
	background: #fff;
}

.story-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #333;
	text-align: center;
}

.story-content p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 25px;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #333;
}

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

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.contact-item p {
	color: #666;
	line-height: 1.6;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form input,
.contact-form textarea {
	padding: 15px;
	border: 2px solid #e9ecef;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #007bff;
}

.consent-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 10px 0;
}

.consent-checkbox input[type='checkbox'] {
	margin-top: 4px;
	transform: scale(1.2);
}

.consent-checkbox label {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
	cursor: pointer;
}

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

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #333;
}

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

.faq-item {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 15px;
	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;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #007bff;
	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: #666;
	line-height: 1.6;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	background: #fff;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #333;
}

.legal-page h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 40px 0 20px;
	color: #333;
}

.legal-page h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 30px 0 15px;
	color: #333;
}

.legal-page p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.legal-page li {
	color: #666;
	line-height: 1.6;
	margin-bottom: 8px;
}

/* Footer */
.footer {
	background: #333;
	color: #fff;
	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 {
	margin-bottom: 20px;
	color: #fff;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 10px;
}

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

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

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

.footer-section ul li a:hover {
	color: #007bff;
}

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

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

	.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: 40px 0;
	}

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

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-content,
	.mission-content,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.mission-content img {
		order: -1;
	}

	.stats {
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
	}

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

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

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

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

	.features h2,
	.about-text h2,
	.values h2,
	.contact h2,
	.faq h2 {
		font-size: 2rem;
	}

	.hero-emoji {
		font-size: 3rem;
	}

	.about-emoji {
		font-size: 6rem;
	}
}

/* Form Success Message */
.form-success {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
}

/* Form Submit Modal */
.form-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: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

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

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

.form-modal h3 {
	margin-bottom: 20px;
	color: #333;
	font-size: 1.5rem;
}

.form-modal p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e9ecef;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 20px;
}
