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

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

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

/* Header Styles */
.header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #6366f1;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.logo:hover {
	color: #4f46e5;
}

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

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

.nav-link:hover,
.nav-link.active {
	color: #6366f1;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #6366f1;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

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

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

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

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

.hero-description {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

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

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

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

.btn-primary:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

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

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

/* Section Styles */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: #333;
}

.section-description {
	font-size: 1.1rem;
	text-align: center;
	color: #666;
	max-width: 800px;
	margin: 0 auto 3rem;
}

/* Animation Styles */
.animated-section {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

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

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

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

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.course-card p {
	color: #666;
	margin-bottom: 1.5rem;
}

.course-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #6366f1;
}

/* Why Choose Section */
.why-choose {
	padding: 80px 0;
	background: white;
}

.why-choose-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.why-choose h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
}

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

.feature-list {
	text-align: left;
	max-width: 600px;
	margin: 2rem auto;
}

.feature-list li {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	color: #555;
}

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

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

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

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

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

.faq-question h3 {
	font-size: 1.1rem;
	color: #333;
}

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

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	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: #6366f1;
}

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

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

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

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin-right: 10px;
	margin-top: 2px;
	flex-shrink: 0;
}

.checkbox-label:hover {
	color: #6366f1;
}

/* About Page Styles */
.about-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.about-hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.our-story {
	padding: 80px 0;
	background: white;
}

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

.story-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

.story-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.our-mission {
	padding: 80px 0;
	background: #f8fafc;
}

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

.mission-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

.mission-values {
	display: grid;
	gap: 1.5rem;
}

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

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

.team {
	padding: 80px 0;
	background: white;
}

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

.team-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1rem;
}

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

.team-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.team-role {
	color: #6366f1;
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-card p {
	color: #666;
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background: #1f2937;
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #6366f1;
}

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

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

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

.footer-section a:hover {
	color: #6366f1;
}

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	max-width: 400px;
	z-index: 10000;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.3s ease;
}

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

.cookie-modal.hide {
	opacity: 0;
	transform: translateY(50px);
	pointer-events: none;
}

.cookie-content h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

.cookie-buttons .btn {
	padding: 8px 20px;
	font-size: 0.9rem;
}

.cookie-link {
	text-align: center;
}

.cookie-link a {
	color: #6366f1;
	text-decoration: none;
	font-size: 0.8rem;
}

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

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

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

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

.legal-content h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 1rem;
	color: #333;
}

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

.legal-content ul {
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
	color: #666;
}

/* Form 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: white;
	border-radius: 20px;
	padding: 3rem;
	max-width: 400px;
	width: 90%;
	text-align: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

.form-modal-loading p {
	color: #666;
	margin: 0;
}

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

.form-modal-success p {
	color: #666;
	margin: 0;
}

.loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #6366f1;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #10b981;
	color: white;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

/* 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: center;
		align-items: center;
		transition: left 0.3s ease;
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

	.section-title {
		font-size: 2rem;
	}

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

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

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

	.story-content .story-image {
		order: -1;
	}

	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

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

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

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

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

	.section-title {
		font-size: 1.8rem;
	}

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

	.story-text h2,
	.mission-text h2 {
		font-size: 2rem;
	}
}
