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

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

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

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

.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;
	text-decoration: none;
	color: #333;
	text-decoration: none;
}

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

.nav-menu {
	display: flex;
	gap: 30px;
}

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

.nav-link:hover,
.nav-link.active {
	color: #007bff;
}

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

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

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

.btn-primary:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

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

.btn-secondary:hover {
	background-color: #007bff;
	color: white;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px;
	color: #666;
}

.hero-buttons {
	display: flex;
	gap: 20px;
}

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

/* About Section */
.about {
	padding: 80px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 30px;
	font-weight: 700;
}

.about-text p {
	font-size: 16px;
	margin-bottom: 20px;
	color: #666;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
}

.stat-item h3 {
	font-size: 36px;
	font-weight: 700;
	color: #007bff;
	margin-bottom: 10px;
}

.stat-item p {
	font-size: 16px;
	color: #666;
}

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

.why-choose h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	font-weight: 700;
}

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

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

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

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h2 {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 700;
}

.contact-info p {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

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

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
}

.form-group textarea {
	resize: vertical;
}

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

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

.faq h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	font-weight: 700;
}

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

.faq-item {
	background: white;
	border-radius: 12px;
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
}

.faq-toggle {
	font-size: 24px;
	font-weight: bold;
	color: #007bff;
	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 20px 20px;
	color: #666;
	line-height: 1.6;
}

/* Courses Page */
.courses-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.courses-hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
}

.courses-hero p {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

.featured-courses {
	padding: 80px 0;
}

.featured-courses h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	font-weight: 700;
}

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

.course-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px 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;
}

.course-content {
	padding: 30px;
}

.course-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 600;
}

.course-content p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.course-details {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.course-details span {
	background: #e9ecef;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 14px;
	color: #666;
}

.course-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 25px;
}

.course-tech span {
	background: #007bff;
	color: white;
	padding: 4px 10px;
	border-radius: 15px;
	font-size: 12px;
}

.learning-experience {
	padding: 80px 0;
	background: #f8f9fa;
}

.learning-experience h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 40px;
	font-weight: 700;
}

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

.experience-text p {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.7;
}

.success-stories {
	padding: 80px 0;
}

.success-stories h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	font-weight: 700;
}

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

.story-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-quote {
	font-style: italic;
	margin-bottom: 20px;
	color: #666;
	line-height: 1.6;
}

.story-author strong {
	display: block;
	color: #333;
	margin-bottom: 5px;
}

.story-author span {
	color: #007bff;
	font-size: 14px;
}

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

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 10px;
}

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

.footer-section ul li {
	margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
	color: white;
}

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

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

.legal-page h1 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.legal-page section {
	margin-bottom: 40px;
}

.legal-page h2 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 600;
	color: #007bff;
}

.legal-page h3 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

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

.legal-page ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.legal-page li {
	margin-bottom: 8px;
	color: #666;
}

.legal-page a {
	color: #007bff;
	text-decoration: none;
}

.legal-page a:hover {
	text-decoration: underline;
}

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

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

.cookie-content {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content h3 {
	margin-bottom: 15px;
	font-weight: 600;
}

.cookie-content p {
	margin-bottom: 20px;
	color: #666;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 15px;
}

.cookie-link {
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
}

.cookie-link:hover {
	text-decoration: underline;
}

/* Loading Modal */
.loading-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.loading-modal-content {
	background: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	animation: modalSlideIn 0.3s ease;
}

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

.loading-icon {
	margin-bottom: 20px;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

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

.loading-icon.success {
	font-size: 48px;
	color: #28a745;
	animation: successPulse 0.5s ease;
}

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

.loading-modal-content h3 {
	margin-bottom: 10px;
	font-weight: 600;
	color: #333;
}

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

/* Checkbox styling */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.checkbox-container input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background-color: #007bff;
	border-color: #007bff;
}

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-weight: bold;
	font-size: 14px;
}

.checkbox-container:hover .checkmark {
	border-color: #007bff;
}

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

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

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 6px;
	margin-top: 20px;
	display: none;
}

.success-message.show {
	display: block;
}

/* 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: 50px;
		transition: left 0.3s ease;
	}

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

	.nav-toggle {
		display: flex;
	}

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

	.hero-content h1 {
		font-size: 36px;
	}

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-stats {
		flex-direction: row;
		justify-content: space-around;
	}

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

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

	.course-details {
		flex-direction: column;
		gap: 10px;
	}

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

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

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

	.hero-content h1 {
		font-size: 28px;
	}

	.courses-hero h1 {
		font-size: 32px;
	}

	.about-text h2,
	.why-choose h2,
	.featured-courses h2,
	.faq h2 {
		font-size: 28px;
	}

	.course-card {
		margin: 0 10px;
	}

	.about-stats {
		flex-direction: column;
		gap: 20px;
	}
}
