* {
	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);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
}

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

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

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

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

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

.nav-menu a:hover {
	color: #007bff;
}

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

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

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

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

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

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

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

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

.hero h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

/* Section CTA */
.section-cta {
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
}

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

.why-choose h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

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

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

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

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

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

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

/* Success Stories Section */
.success-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

.success-stories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

.stat-item {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: #007bff;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
}

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

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

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

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

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

.faq-question:hover {
	color: #007bff;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
}

.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: 200px;
	padding-bottom: 1.5rem;
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
}

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

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

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.contact-info p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #666;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

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

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px 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 #eee;
	border-radius: 6px;
	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: #007bff;
}

/* Courses Page */
.courses-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f9fa;
}

.courses-hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #333;
}

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

.course-categories {
	padding: 80px 0;
	background: white;
}

.course-categories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

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

.course-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

.course-image {
	height: 200px;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.course-icon {
	font-size: 4rem;
}

.course-content {
	padding: 2rem;
}

.course-content h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.course-duration {
	color: #007bff;
	font-weight: 600;
	margin-bottom: 1rem;
}

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

.course-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.feature-tag {
	background: #e9ecef;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	color: #666;
}

.course-price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #007bff;
}

/* Learning Experience */
.learning-experience {
	padding: 80px 0;
	background: #f8f9fa;
}

.learning-experience h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

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

.experience-text p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #666;
	line-height: 1.7;
}

/* Advanced Courses */
.advanced-courses {
	padding: 80px 0;
	background: white;
}

.advanced-courses h2 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 3rem;
	color: #333;
}

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

.specialization-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

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

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

.specialization-card p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.specialization-card ul {
	list-style: none;
}

.specialization-card li {
	padding: 0.5rem 0;
	color: #666;
	border-bottom: 1px solid #eee;
}

.specialization-card li:before {
	content: '✓ ';
	color: #007bff;
	font-weight: bold;
}

/* Footer */
.footer {
	background: #333;
	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;
}

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

.footer-section li {
	margin-bottom: 0.5rem;
	color: #666;
	line-height: 1.6;
}

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

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

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

/* 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;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	padding: 2rem;
	text-align: center;
	color: white;
}

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

.cookie-content p {
	margin-bottom: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.cookie-content a {
	color: #ccc;
	font-size: 0.9rem;
}

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

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

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

.legal-page h3 {
	font-size: 1.3rem;
	margin: 1.5rem 0 0.5rem;
	color: #333;
}

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

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

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

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

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

/* Checkbox styling */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.4;
	color: #666;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 18px;
	height: 18px;
	background-color: #fff;
	border: 2px solid #eee;
	border-radius: 3px;
	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-size: 12px;
	font-weight: bold;
}

.checkbox-container input[type='checkbox']:focus + .checkmark {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

.checkbox-container.error .checkmark {
	border-color: #dc3545;
}

/* Image Styling */
.course-img,
.specialization-img,
.hero-img,
.feature-img,
.success-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.hero-image {
	margin-bottom: 2rem;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

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

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

.success-hero-image {
	text-align: center;
	margin-bottom: 2rem;
}

.success-img {
	max-width: 600px;
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.specialization-image {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.specialization-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.submission-modal.show {
	opacity: 1;
}

.submission-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.loading-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 1rem;
}

.success-checkmark {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 2rem;
	color: white;
	font-weight: bold;
	animation: scaleIn 0.3s ease;
}

.submission-modal h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.submission-status {
	color: #666;
	margin: 0;
}

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

@keyframes scaleIn {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

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

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

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

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

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

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

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

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

	.hero-img,
	.success-img {
		height: 200px;
	}

	.feature-image {
		width: 60px;
		height: 60px;
	}

	.specialization-image {
		width: 50px;
		height: 50px;
	}
}

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

	.hero {
		padding: 100px 0 60px;
	}

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

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

	.feature-card,
	.course-card,
	.specialization-card {
		padding: 1.5rem;
	}

	.course-image {
		height: 150px;
	}

	.course-content {
		padding: 1.5rem;
	}

	.hero-img,
	.success-img {
		height: 150px;
	}
}
