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

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #0056b3;
}

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

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

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

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

.btn-outline {
	background-color: transparent;
	color: #007bff;
	border-color: #007bff;
}

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

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

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: #007bff;
}

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

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

.nav-menu a {
	color: #333;
	font-weight: 500;
	position: relative;
}

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

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #007bff;
	transition: width 0.3s ease;
}

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 10000;
	padding: 2rem;
	transition: bottom 0.5s ease;
}

.cookie-modal.show {
	bottom: 0;
}

.cookie-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

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

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

.cookie-link {
	color: #007bff;
	font-size: 0.9rem;
}

/* Hero Section */
.hero {
	padding: 8rem 0 4rem;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

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

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

.hero-content p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
}

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

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

/* Page Header */
.page-header {
	padding: 8rem 0 2rem;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* Section Styles */
section {
	padding: 4rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

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

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

.about-text h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

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

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

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

.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.card-content h3 {
	margin-bottom: 1rem;
}

.card-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #666;
}

/* Course Categories */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.category-card {
	text-align: center;
	padding: 2rem;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

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

/* Detailed Courses */
.detailed-courses {
	background-color: #f8f9fa;
}

.course-detail {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 4rem;
	align-items: center;
}

.course-detail.reverse {
	grid-template-columns: 2fr 1fr;
}

.course-detail.reverse .course-image {
	order: 2;
}

.course-detail.reverse .course-info {
	order: 1;
}

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

.course-highlights ul {
	list-style-position: inside;
	margin-top: 1rem;
}

.course-highlights li {
	margin-bottom: 0.5rem;
}

.course-meta {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
	font-size: 0.9rem;
	color: #666;
}

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

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

.story-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.story-card .role {
	color: #007bff;
	font-weight: 500;
	margin-bottom: 1rem;
}

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

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

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

.faq-question {
	padding: 1.5rem;
	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 {
	margin: 0;
	font-size: 1.1rem;
}

.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;
	margin: 0;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-top: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h3 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.contact-form {
	background-color: 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 #e9ecef;
	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;
}

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

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

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #e9ecef;
	border-radius: 3px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

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

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

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 4px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Footer */
.footer {
	background-color: #343a40;
	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: #adb5bd;
}

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

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

/* Legal Pages */
.legal-page {
	padding: 8rem 0 4rem;
	max-width: 800px;
	margin: 0 auto;
}

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

.legal-page h2 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #007bff;
}

.legal-page h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

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

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

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

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

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

/* Form Success Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10001;
}

.form-modal.show {
	display: flex;
}

.form-modal-content {
	background-color: white;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	margin: 20px;
	position: relative;
}

.form-modal h3 {
	color: #28a745;
	margin-bottom: 1rem;
}

.form-modal p {
	color: #666;
	margin-bottom: 2rem;
}

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

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

.form-modal .success-icon {
	font-size: 4rem;
	color: #28a745;
	margin-bottom: 1rem;
}

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

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
	}

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

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

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

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

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

	.course-detail,
	.course-detail.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.course-detail.reverse .course-image,
	.course-detail.reverse .course-info {
		order: initial;
	}

	.course-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

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

	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.legal-page {
		padding: 6rem 0 2rem;
	}
}

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

	.hero {
		padding: 6rem 0 2rem;
	}

	section {
		padding: 2rem 0;
	}

	.program-cards,
	.categories-grid,
	.stories-grid {
		grid-template-columns: 1fr;
	}

	.card,
	.category-card,
	.story-card {
		margin-bottom: 1rem;
	}
}
