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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background: #0a0a0a;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #00d4ff;
	text-decoration: none;
	background: linear-gradient(135deg, #00d4ff, #7b68ee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
	color: #00d4ff;
}

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgba(20, 20, 20, 0.95);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 25px;
	max-width: 400px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-modal h3 {
	color: #00d4ff;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.cookie-modal p {
	color: #b0b0b0;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

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

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

.btn-accept {
	background: linear-gradient(135deg, #00d4ff, #7b68ee);
	color: white;
}

.btn-decline {
	background: transparent;
	color: #b0b0b0;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-decline:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary,
.btn-secondary {
	padding: 12px 28px;
	border: none;
	border-radius: 12px;
	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: linear-gradient(135deg, #00d4ff, #7b68ee);
	color: white;
}

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

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary:hover {
	background: #00d4ff;
	color: #0a0a0a;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 70%
	);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.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;
	background: linear-gradient(135deg, #ffffff, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: #b0b0b0;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

/* Features Section */
.features {
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.02);
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #ffffff;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 212, 255, 0.3);
}

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

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #00d4ff;
}

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

/* Courses Section */
.courses {
	padding: 80px 0;
}

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

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

.course-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.course-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 212, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

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

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #00d4ff;
}

.course-content p {
	color: #b0b0b0;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.course-duration {
	display: inline-block;
	background: rgba(0, 212, 255, 0.2);
	color: #00d4ff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: radial-gradient(
		ellipse at center,
		rgba(123, 104, 238, 0.1) 0%,
		transparent 70%
	);
}

.about-hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff, #7b68ee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero p {
	font-size: 1.2rem;
	color: #b0b0b0;
	max-width: 800px;
	margin: 0 auto;
}

.story {
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.02);
}

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

.story-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #00d4ff;
}

.story-text p {
	color: #b0b0b0;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.story-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(123, 104, 238, 0.2);
}

.values {
	padding: 80px 0;
}

.values h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #ffffff;
}

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

.value-item {
	text-align: center;
	padding: 2rem;
}

.value-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #7b68ee;
}

.value-item p {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Contact Form */
.contact-form {
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.02);
}

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

.contact-form > p {
	text-align: center;
	color: #b0b0b0;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.contact-form-container {
	max-width: 600px;
	margin: 0 auto;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
	font-weight: 500;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #e0e0e0;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #00d4ff;
	background: rgba(255, 255, 255, 0.1);
}

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

.form-group-checkbox label {
	display: inline;
	margin-bottom: 0;
	font-weight: 400;
	color: #b0b0b0;
	cursor: pointer;
	font-size: 0.9rem;
}

.form-group input[type='checkbox'] {
	accent-color: #00d4ff;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-success {
	text-align: center;
	padding: 2rem;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 15px;
	margin-top: 2rem;
}

.form-success h3 {
	color: #00d4ff;
	margin-bottom: 0.5rem;
}

.form-success p {
	color: #b0b0b0;
}

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

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

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

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	margin-bottom: 1rem;
	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: rgba(255, 255, 255, 0.08);
}

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

.faq-toggle {
	font-size: 1.5rem;
	color: #00d4ff;
	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: #b0b0b0;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.8);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 60px 0 20px;
	margin-top: 80px;
}

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

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

.footer-section p,
.footer-section ul {
	color: #b0b0b0;
}

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

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

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

.footer-section a:hover {
	color: #00d4ff;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #666;
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #00d4ff;
}

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

.legal-page h3 {
	font-size: 1.5rem;
	margin: 1.5rem 0 1rem;
	color: #00d4ff;
}

.legal-page h4 {
	font-size: 1.2rem;
	margin: 1rem 0 0.5rem;
	color: #7b68ee;
}

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

.legal-page ul,
.legal-page ol {
	color: #b0b0b0;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

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

.legal-page strong {
	color: #e0e0e0;
}

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

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

@media (max-width: 1000px) {
	.hero .container {
		flex-direction: column;
	}
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.95);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		backdrop-filter: blur(10px);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 2rem 0;
	}

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

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.hero-buttons {
		justify-content: center;
	}

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

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

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

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

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

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

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

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 250px;
	}
}

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

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

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

	.features h2,
	.courses h2,
	.values h2,
	.faq h2 {
		font-size: 2rem;
	}

	.feature-card,
	.course-card {
		margin-bottom: 1rem;
	}

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

	.legal-page h2 {
		font-size: 1.5rem;
	}
}
