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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fefefe;
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

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

.logo {
	height: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;

	font-size: 1.2rem;
	font-weight: 700;
	color: #2563eb;
	text-decoration: none;
}

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

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

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

.nav-links a:hover,
.nav-links a.active {
	color: #2563eb;
}

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

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

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

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

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	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;
	opacity: 0.9;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

/* Simple Hero for other pages */
.hero-simple {
	padding: 120px 0 80px;
	background: #f8fafc;
	text-align: center;
}

.hero-simple h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.hero-simple p {
	font-size: 1.1rem;
	color: #64748b;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: #2563eb;
	color: white;
}

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

.btn-secondary {
	background: #64748b;
	color: white;
}

.btn-secondary:hover {
	background: #475569;
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: white;
	color: #2563eb;
}

/* Courses Section */
.courses {
	background: #f8fafc;
}

.courses h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #64748b;
	margin-bottom: 3rem;
}

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

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

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

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

.course-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.course-card p {
	margin-bottom: 1rem;
	color: #64748b;
}

.course-details {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: #2563eb;
	font-weight: 500;
}

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

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.about p {
	margin-bottom: 1rem;
	color: #64748b;
}

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

.stat {
	text-align: center;
}

.stat-number {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.5rem;
}

.stat h3 {
	font-size: 2rem;
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.stat p {
	color: #64748b;
	margin: 0;
}

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

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

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e293b;
}

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

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
	margin: 0;
	color: #1e293b;
}

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

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

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

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

.faq-answer p {
	color: #64748b;
	margin: 0;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item img {
	width: 40px;
	height: 40px;
}

.contact-item h3 {
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.contact-item p {
	margin: 0;
	color: #64748b;
}

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

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

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

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	min-width: 18px;
	height: 18px;
	cursor: pointer;
}

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

/* Story Section */
.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.story h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.story p {
	margin-bottom: 1rem;
	color: #64748b;
}

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

/* Mission Section */
.mission {
	background: #f8fafc;
}

.mission h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e293b;
}

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

.mission-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.mission-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.mission-item p {
	color: #64748b;
	margin: 0;
}

/* Team Section */
.team h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

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

.team-member {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.team-member h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.team-member .role {
	color: #2563eb;
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-member p {
	color: #64748b;
	margin: 0;
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #1e293b;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #1e293b;
}

.legal-page p {
	margin-bottom: 1rem;
	color: #64748b;
}

.legal-page ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	color: #64748b;
}

.last-updated {
	font-style: italic;
	color: #94a3b8;
	margin-bottom: 2rem;
}

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

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

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

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

.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: 2rem;
	border-top: 1px solid #334155;
	color: #94a3b8;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 10000;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

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

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

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

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	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);
}

.form-modal h3 {
	margin-bottom: 1rem;
	color: #1e293b;
	font-size: 1.5rem;
}

.form-modal p {
	margin-bottom: 2rem;
	color: #64748b;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #e2e8f0;
	border-top: 4px solid #2563eb;
	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: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

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

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

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

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

	.nav-links {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		transform: translateY(-100%);
		transition: all 0.3s ease;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		gap: 1rem;
	}

	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-links li {
		text-align: center;
		border-bottom: 1px solid #e2e8f0;
		padding-bottom: 1rem;
	}

	.nav-links li:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.nav-links a {
		display: block;
		padding: 0.5rem 1rem;
		font-size: 1.1rem;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.nav-links a:hover {
		background: #f1f5f9;
		transform: translateX(5px);
	}

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

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

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

	.about-content,
	.contact-content,
	.story-content {
		grid-template-columns: 1fr;
	}

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

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

	.courses-grid,
	.mission-grid,
	.team-grid {
		grid-template-columns: 1fr;
	}
}

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

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

	.cookie-modal {
		padding: 1rem;
	}
}
