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

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

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	padding: 1rem 0;
	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;
}

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

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

.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,
.nav-menu a.active {
	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 {
	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;
	color: white;
}

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

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

.cta-button {
	display: inline-block;
	background: #007bff;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Sections */
section {
	padding: 80px 0;
}

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

/* About Section */
.about {
	background: #f8f9fa;
}

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

.about-text h2 {
	text-align: left;
	margin-bottom: 2rem;
}

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

.stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: #007bff;
}

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

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Programs Section */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.program-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
}

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

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

.program-card ul {
	list-style: none;
	text-align: left;
}

.program-card li {
	padding: 0.5rem 0;
	color: #555;
	position: relative;
	padding-left: 1.5rem;
}

.program-card li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

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

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

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

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

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

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

/* Contact Section */
.contact {
	background: #f8f9fa;
}

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

.contact-info h2 {
	text-align: left;
	margin-bottom: 1.5rem;
}

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

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

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-item .icon {
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.contact-item h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #333;
}

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

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

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

.checkbox-label:hover {
	color: #333;
}

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

.submit-btn {
	background: #007bff;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: #0056b3;
}

/* Courses Page Styles */
.courses-hero {
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: white;
	text-align: center;
	padding: 120px 0 80px;
}

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

.courses-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
}

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

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

.category-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.category-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

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

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

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

.category-card li {
	padding: 0.5rem 0;
	color: #555;
	position: relative;
	padding-left: 1.5rem;
}

.category-card li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

.detailed-courses {
	background: #f8f9fa;
	padding: 80px 0;
}

.courses-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 2rem;
}

.course-item {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 0;
}

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

.course-details {
	padding: 2rem;
}

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

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

.course-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.course-meta span {
	background: #e9ecef;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #555;
}

.course-highlights h4 {
	margin-bottom: 1rem;
	color: #333;
}

.course-highlights ul {
	list-style: none;
}

.course-highlights li {
	padding: 0.5rem 0;
	color: #555;
	position: relative;
	padding-left: 1.5rem;
}

.course-highlights li:before {
	content: '→';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

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

.stories-content p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 2rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

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

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

.cookie-content {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	background: white;
	padding: 2rem;
	margin: 1rem;
	border-radius: 10px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.cookie-content p {
	color: #666;
	margin-bottom: 1.5rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.btn-accept,
.btn-decline {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

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

.btn-accept:hover {
	background: #0056b3;
}

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

.btn-decline:hover {
	background: #545b62;
}

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

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

.last-updated {
	color: #666;
	font-style: italic;
	margin-bottom: 2rem;
}

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

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

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

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

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

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

/* 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 ul li {
	margin-bottom: 0.5rem;
}

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

/* 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 p {
		font-size: 1.1rem;
	}

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

	.stats {
		flex-direction: column;
		justify-content: center;
	}

	.course-item {
		grid-template-columns: 1fr;
	}

	.course-image {
		height: 200px;
	}

	.course-meta {
		gap: 1rem;
	}

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

	.categories-grid,
	.programs-grid {
		grid-template-columns: 1fr;
	}

	section h2 {
		font-size: 2rem;
	}
}

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

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

	.container {
		padding: 0 15px;
	}

	.cookie-content {
		margin: 0.5rem;
		padding: 1.5rem;
	}
}
