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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

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

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

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

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

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

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

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

.nav-menu a:hover {
	color: #007bff;
}

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

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

/* Sections */
.section {
	padding: 100px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	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 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

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

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

.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.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;
}

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

/* Learning Simple Section */
.learning-simple {
	background: #ffffff;
}

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

.text-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.text-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
}

.features-list {
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.emoji {
	font-size: 1.5rem;
}

.feature-item span:last-child {
	font-weight: 500;
}

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

/* Innovation Cards Section */
.innovation-cards {
	background: #f8f9fa;
}

.innovation-cards h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

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

.card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

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

/* Contact Section */
.contact {
	background: #ffffff;
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

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

.contact-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

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

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

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

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

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

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

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

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

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

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	line-height: 1.6;
}

/* About Page Styles */
.about-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.about-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.about-content p {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.6;
}

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

.our-story {
	background: #ffffff;
}

.our-story h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

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

.story-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

.our-mission {
	background: #f8f9fa;
}

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

.mission-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.mission-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.mission-values {
	margin-top: 2rem;
}

.value-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: flex-start;
}

.value-item .emoji {
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.value-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.value-item p {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

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

.technology {
	background: #ffffff;
}

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

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

.tech-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.tech-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.tech-features {
	list-style: none;
	margin-top: 1.5rem;
}

.tech-features li {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: #666;
	font-size: 1rem;
}

.tech-features strong {
	color: #007bff;
	font-weight: 600;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.checkbox-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-group input[type='checkbox'] {
	width: 20px;
	height: 20px;
}

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

.cookie-content {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background: white;
	padding: 2rem;
	max-width: 600px;
	margin: 0 auto;
	border-radius: 12px 12px 0 0;
}

.cookie-content h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

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

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: #007bff;
}

.legal-page h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
}

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

.legal-page ul {
	margin: 1rem 0 1rem 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
		z-index: 999;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

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

	.nav-menu a {
		padding: 1rem 0;
		font-size: 1.2rem;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #eee;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

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

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	.hero .container,
	.content-wrapper,
	.contact-wrapper,
	.mission-wrapper,
	.tech-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

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

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

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

	.about-hero .container,
	.mission-wrapper,
	.tech-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.mission-content h2,
	.tech-content h2 {
		font-size: 2rem;
	}
}

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

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

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

	.btn {
		width: 100%;
	}
}
