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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	padding: 24px;
	max-width: 500px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-modal h3 {
	margin-bottom: 12px;
	color: #333;
}

.cookie-modal p {
	margin-bottom: 16px;
	color: #666;
	font-size: 14px;
}

.cookie-buttons {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.cookie-buttons button {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
}

.cookie-policy-link {
	color: #007bff;
	text-decoration: none;
	font-size: 13px;
}

.cookie-policy-link:hover {
	text-decoration: underline;
}

/* Consent Checkbox */
.consent-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
	margin-top: 8px;
}

.consent-checkbox input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

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

.consent-checkbox input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

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

/* Header */
.header {
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.nav {
	padding: 1rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 16px;
	color: #333;
}

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

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

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

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 24px;
	color: #333;
	line-height: 1.2;
}

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

.hero-buttons {
	display: flex;
	gap: 16px;
}

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

/* Courses Section */
.courses {
	background: white;
}

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

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

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

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

.course-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: #333;
}

.course-card p {
	color: #666;
	margin-bottom: 20px;
}

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

.course-meta span {
	background: #f8f9fa;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	color: #666;
}

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

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
}

.about-text h2 {
	font-size: 2.2rem;
	margin-bottom: 24px;
	color: #333;
}

.about-text > p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 32px;
}

.about-features {
	margin-bottom: 32px;
}

.about-features h4 {
	margin-bottom: 20px;
	color: #333;
}

.feature {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.feature-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.feature h4 {
	margin-bottom: 8px;
	color: #333;
}

.feature p {
	color: #666;
	margin: 0;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

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

.stat h3 {
	font-size: 2rem;
	color: #007bff;
	margin-bottom: 8px;
}

.stat p {
	color: #666;
	margin: 0;
}

/* FAQ Section */
.faq {
	background: white;
}

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

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

.faq-question {
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

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

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

.faq-item.active .faq-answer {
	max-height: 200px;
	padding-bottom: 24px;
}

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

.faq-answer a {
	color: #007bff;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h4 {
	margin-bottom: 12px;
	color: #333;
}

.contact-item {
	margin-bottom: 32px;
}

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

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 24px;
	display: grid;
	gap: 16px;
}

.form-group.two-column {
	grid-template-columns: 1fr 1fr;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
	border: 1px solid #ddd;
	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;
}

/* Programs Page */
.programs-hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color: white;
	text-align: center;
}

.programs-hero h1 {
	font-size: 3rem;
	margin-bottom: 24px;
}

.programs-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

.detailed-programs {
	background: white;
}

.program-detailed {
	margin-bottom: 80px;
}

.program-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.program-content.reverse {
	grid-template-columns: 1fr 2fr;
}

.program-content.reverse .program-text {
	order: 2;
}

.program-content.reverse .program-image {
	order: 1;
}

.program-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #333;
}

.program-text > p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 24px;
}

.program-highlights {
	margin-bottom: 24px;
}

.program-highlights h4 {
	margin-bottom: 12px;
	color: #333;
}

.program-highlights ul {
	list-style: none;
	padding: 0;
}

.program-highlights li {
	padding: 8px 0;
	color: #666;
	position: relative;
	padding-left: 24px;
}

.program-highlights li:before {
	content: '✓';
	color: #28a745;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.program-stats {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.program-stats .stat {
	background: #f8f9fa;
	padding: 12px 16px;
	border-radius: 6px;
	flex: 1;
	min-width: 150px;
}

.program-stats .stat strong {
	color: #333;
}

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

.success-stories {
	background: #f8f9fa;
}

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

.success-stories > p {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto 60px;
}

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

.story-card {
	background: white;
	padding: 32px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-content p {
	font-style: italic;
	color: #666;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.story-author strong {
	color: #333;
	display: block;
}

.story-author span {
	color: #666;
	font-size: 0.9rem;
}

.application-process {
	background: white;
}

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

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
}

.step {
	text-align: center;
	padding: 32px 20px;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #007bff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step h3 {
	margin-bottom: 12px;
	color: #333;
}

.step p {
	color: #666;
}

/* Footer */
.footer {
	background: #333;
	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 h4 {
	margin-bottom: 16px;
	color: white;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 8px;
}

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

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

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

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

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

/* Legal Pages */
.legal-page {
	padding: 140px 0 80px;
	background: white;
}

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

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 24px;
	color: #333;
}

.legal-content h2 {
	font-size: 1.5rem;
	margin: 32px 0 16px;
	color: #333;
}

.legal-content h3 {
	font-size: 1.3rem;
	margin: 24px 0 12px;
	color: #333;
}

.legal-content p {
	margin-bottom: 16px;
	color: #666;
	line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
	margin: 16px 0 16px 24px;
	color: #666;
}

.legal-content li {
	margin-bottom: 8px;
}

.legal-content a {
	color: #007bff;
	text-decoration: none;
}

.legal-content a:hover {
	text-decoration: underline;
}

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

/* Form Success Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	border-radius: 12px;
	padding: 32px;
	max-width: 400px;
	text-align: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	color: #28a745;
	margin-bottom: 16px;
	font-size: 1.3rem;
}

.form-modal p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.5;
}

.form-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 20px 0;
}

.loading-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.loading-text {
	color: #666;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: var(--header-h, 64px);
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		transform: translateY(-20px);
		transition: transform 0.3s ease;
		opacity: 0;
		visibility: hidden;
		z-index: 999;
	}

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

	.nav-menu li {
		border-bottom: 1px solid #eee;
	}

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

	.nav-menu a {
		display: block;
		padding: 12px 0;
		font-size: 1rem;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

	/* Reduce default section spacing on mobile */
	.section {
		padding: 64px 0;
	}

	/* Slightly tighter hero spacing on mobile */
	.hero {
		padding: 120px 0 64px;
	}

	/* Compact form padding on mobile */
	.contact-form {
		padding: 24px;
	}

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-stats {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

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

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

	.program-content,
	.program-content.reverse {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.program-content.reverse .program-text {
		order: 1;
	}

	.program-content.reverse .program-image {
		order: 2;
	}

	.program-stats {
		flex-direction: column;
		gap: 16px;
	}

	.programs-hero h1 {
		font-size: 2.2rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cookie-modal {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

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

/* Lock body scroll when mobile menu is open */
body.menu-open {
	overflow: hidden;
}

/* Mobile menu backdrop */
@media (max-width: 768px) {
	.nav-backdrop {
		position: fixed;
		top: var(--header-h, 64px);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.25);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		z-index: 998;
	}

	.nav-backdrop.active {
		opacity: 1;
		visibility: visible;
	}
}

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

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

	.section-header h2 {
		font-size: 1.6rem;
	}

	.programs-hero h1 {
		font-size: 1.8rem;
	}

	.program-text h2 {
		font-size: 1.6rem;
	}
}
