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

body {
	font-family: 'Noto 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 {
	font-family: 'Cal Sans', 'Noto Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	color: #1a1a1a;
}

h2 {
	font-size: 2.5rem;
	color: #1a1a1a;
}

h3 {
	font-size: 1.5rem;
	color: #333;
}

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

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

.btn-primary {
	background-color: #000;
	color: #fff;
}

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

.btn-secondary {
	background-color: #c7c7c7;
	color: #000;
	border: 2px solid #000;
}

.btn-secondary:hover {
	background-color: #000;
	color: #fff;
}

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

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
	text-decoration: none;
}

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

.nav-menu {
	display: flex;
	gap: 2rem;
	transition: all 0.3s ease;
}

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

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

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

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

.nav-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

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

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

/* 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: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

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

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

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

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

.why-choose h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

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

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

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

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

.success-stories h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

.story-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

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

.story-role {
	color: #666;
	font-style: italic;
	margin-bottom: 1rem;
}

.story-metrics {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.story-metrics span {
	background-color: #000;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
}

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

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

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

.contact-details {
	margin-top: 2rem;
}

.contact-item {
	margin-bottom: 1.5rem;
}

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

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

.contact-form h3 {
	margin-bottom: 1.5rem;
	text-align: center;
}

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

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

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	margin-bottom: 2rem;
}

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

.checkbox-label input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
}

.checkmark {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 2px solid #ddd;
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
	border-color: #000;
}

.checkbox-label input:checked + .checkmark {
	background-color: #000;
	border-color: #000;
}

.checkbox-label input:checked + .checkmark:after {
	content: '';
	position: absolute;
	display: block;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.contact-form .btn {
	width: 100%;
}

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

.faq h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

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

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 1.5rem 1.5rem;
}

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

.courses-hero h1 {
	margin-bottom: 1.5rem;
}

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

.course-categories h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

.category-card {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.category-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.category-content {
	padding: 2rem;
}

.category-duration {
	color: #666;
	font-weight: 500;
	margin-bottom: 1rem;
}

.category-features {
	list-style: none;
	margin: 1.5rem 0;
}

.category-features li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
}

.category-features li:last-child {
	border-bottom: none;
}

.category-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
}

.category-price {
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
}

/* Learning Approach */
.learning-approach {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.learning-approach h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.section-intro {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
}

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

.approach-step {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.step-number {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.2rem;
}

.approach-image img {
	width: 100%;
	border-radius: 12px;
}

/* Student Outcomes */
.student-outcomes {
	padding: 80px 0;
}

.student-outcomes h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

.outcome-stat {
	text-align: center;
	padding: 2rem;
	background-color: #f8f9fa;
	border-radius: 12px;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 0.5rem;
}

/* Footer */
.footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
	color: #fff;
	margin-bottom: 1rem;
}

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

.footer-section ul li {
	margin-bottom: 0.5rem;
}

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: 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 {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
	color: #fff;
}

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

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

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

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.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: #000;
}

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

.legal-content h4 {
	margin: 1rem 0 0.5rem;
	color: #555;
	font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
	margin: 1rem 0 1rem 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

/* Form Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10001;
	display: none;
	align-items: center;
	justify-content: center;
}

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

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

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

.form-loading {
	width: 60px;
	height: 60px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 2rem;
}

.form-success {
	width: 60px;
	height: 60px;
	border: 4px solid #4caf50;
	border-radius: 50%;
	margin: 0 auto 2rem;
	position: relative;
	display: none;
}

.form-success::after {
	content: '';
	position: absolute;
	left: 18px;
	top: 10px;
	width: 12px;
	height: 20px;
	border: solid white;
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}

.form-success.show {
	display: block;
	background-color: #4caf50;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu a {
		font-size: 1.2rem;
		padding: 0.5rem 0;
		border-bottom: 1px solid #eee;
		text-align: center;
	}

	.nav-menu a:last-child {
		border-bottom: none;
	}

	.nav-toggle {
		display: flex;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

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

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

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

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

	.approach-content {
		grid-template-columns: 1fr;
	}

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

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

	.outcomes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

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

	h1 {
		font-size: 2rem;
	}

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

	.outcomes-grid {
		grid-template-columns: 1fr;
	}

	.approach-step {
		flex-direction: column;
		text-align: center;
	}

	.step-number {
		align-self: center;
	}
}
