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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #0f0f0f;
}

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

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

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

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

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

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

.nav-menu a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #4f46e5;
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	transition: color 0.3s ease;
	z-index: 1001;
}

.mobile-menu-toggle:hover {
	color: #4f46e5;
}

.mobile-menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: #ffffff;
	margin: 5px 0;
	transition: 0.3s;
	border-radius: 2px;
}

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

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

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

/* 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;
	animation: scaleIn 1s ease-out;
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

/* Buttons */
.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;
}

.btn-primary {
	background: #4f46e5;
	color: #ffffff;
}

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

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

.btn-secondary:hover {
	background: #ffffff;
	color: #0f0f0f;
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-animate {
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.8s ease;
}

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

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

/* Why Choose Us */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	transition: transform 0.3s ease;
}

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

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

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

.feature p {
	opacity: 0.9;
	line-height: 1.7;
}

/* About Section */
.about {
	background: rgba(255, 255, 255, 0.02);
}

.about p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

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

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

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

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

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-family: inherit;
}

.contact-form .form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	text-align: left;
}

.contact-form .form-check input[type='checkbox'] {
	width: auto;
	margin: 0;
	margin-top: 5px;
	flex-shrink: 0;
}

.contact-form .form-check label {
	font-size: 0.9rem;
	opacity: 0.8;
	line-height: 1.4;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* FAQ */
.faq-items {
	max-width: 800px;
	margin: 0 auto;
}

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

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
}

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

.faq-answer p {
	padding: 1.5rem;
	opacity: 0.9;
}

/* Courses Page */
.courses-hero {
	padding: 8rem 0 4rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.02);
}

.courses-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* Course Cards */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.course-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	padding: 1.5rem;
}

.card-content h3 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.card-content p {
	opacity: 0.9;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.card-details {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.card-details span {
	background: rgba(79, 70, 229, 0.2);
	color: #4f46e5;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.9rem;
}

/* Learning Process */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #4f46e5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1.5rem;
}

.process-step h3 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

/* Success Stories */
.success-stories {
	background: rgba(255, 255, 255, 0.02);
}

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

.story {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

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

.story p {
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.story-author strong {
	display: block;
	margin-bottom: 0.25rem;
}

.story-author span {
	opacity: 0.7;
	font-size: 0.9rem;
}

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

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

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	text-align: left;
}

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

.legal-page p,
.legal-page li {
	margin-bottom: 1rem;
	opacity: 0.9;
	line-height: 1.7;
}

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

/* Footer */
.footer {
	background-color: #0a0a0a;
	padding: 3rem 0 1rem;
	margin-top: 4rem;
}

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

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

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

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #4f46e5;
}

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

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

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

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

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

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

/* Contact Form Success Modal */
.form-success-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-success-content {
	background: rgba(15, 15, 15, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 3rem 2rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	animation: modalSlideIn 0.4s ease;
}

.form-success-content h3 {
	color: #4f46e5;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.form-success-content p {
	margin-bottom: 2rem;
	opacity: 0.9;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(79, 70, 229, 0.3);
	border-top: 3px solid #4f46e5;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

.success-checkmark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #4f46e5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.3s ease;
}

.success-checkmark.show {
	opacity: 1;
	transform: scale(1);
}

.success-checkmark::after {
	content: '✓';
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

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

/* Animations */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(15, 15, 15, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 1rem 2rem;
		gap: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	}

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

	.nav-menu li {
		padding: 0.5rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu a {
		display: block;
		padding: 0.5rem 0;
		font-size: 1.1rem;
	}

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

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

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

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

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

	.process-steps {
		grid-template-columns: 1fr;
	}

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

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

	h2 {
		font-size: 2rem;
	}

	.legal-page {
		padding: 6rem 0 2rem;
	}
}

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

	.nav-container {
		padding: 1rem 15px;
	}

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

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

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	section {
		padding: 3rem 0;
	}

	h2 {
		font-size: 1.8rem;
	}

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

	.feature {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}
}
