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

body {
	font-family: 'Cal Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #ffffff;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	z-index: 1000;
	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;
	height: 70px;
}

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

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

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	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;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

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

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: #a1a1a1;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #212529;
}

.feature-card p {
	color: #6c757d;
	line-height: 1.7;
}

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

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

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

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

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

.stat-item h3 {
	font-size: 2.5rem;
	color: #007bff;
	margin-bottom: 10px;
}

.stat-item p {
	color: #6c757d;
}

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

.courses-hero h1 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #212529;
}

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

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

.courses-grid h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
	color: #212529;
}

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

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

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

.course-image {
	height: 200px;
	overflow: hidden;
}

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

.course-content {
	padding: 30px;
}

.course-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #212529;
}

.course-content p {
	color: #6c757d;
	margin-bottom: 20px;
	line-height: 1.7;
}

.course-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.course-meta span {
	background: #e9ecef;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #495057;
}

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

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

.contact-form > .container > p {
	text-align: center;
	font-size: 1.1rem;
	color: #6c757d;
	margin-bottom: 50px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

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

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

.checkbox-container input {
	width: 16px;
	height: 16px;
}

.contact-form-element button {
	width: 100%;
	padding: 15px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-form-element button:hover {
	background: #0056b3;
}

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

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
	color: #212529;
}

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

.faq-item {
	margin-bottom: 20px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
}

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	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: 20px;
	color: #6c757d;
	line-height: 1.7;
}

/* Footer */
.footer {
	background: #212529;
	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;
	color: #007bff;
}

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

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

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

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

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

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

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.cookie-content h3 {
	color: white;
	margin-bottom: 10px;
}

.cookie-content p {
	color: #adb5bd;
	flex: 1;
	min-width: 300px;
}

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

.btn-accept,
.btn-decline {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #28a745;
	color: white;
}

.btn-accept:hover {
	background: #218838;
}

.btn-decline {
	background: transparent;
	color: white;
	border: 2px solid #6c757d;
}

.btn-decline:hover {
	background: #6c757d;
}

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

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

.form-modal-content {
	background: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

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

.form-modal h3 {
	color: #212529;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.form-modal p {
	color: #6c757d;
	margin-bottom: 0;
}

.success-check {
	width: 50px;
	height: 50px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 24px;
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: #212529;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 40px 0 20px;
	color: #212529;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 30px 0 15px;
	color: #495057;
}

.legal-page p {
	margin-bottom: 20px;
	color: #6c757d;
	line-height: 1.8;
}

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

.legal-page li {
	margin-bottom: 10px;
	color: #6c757d;
	line-height: 1.7;
}

/* Form Success Message */
.form-success {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
}

/* 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: 20px 0;
	}

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

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

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

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

	.features-grid,
	.stats-grid,
	.course-cards {
		grid-template-columns: 1fr;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

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

@media (max-width: 480px) {
	.hero {
		padding: 100px 0 60px;
	}

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

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

	.section-padding {
		padding: 60px 0;
	}

	.container {
		padding: 0 15px;
	}
}
