:root {
	--primary-color: #2563eb;
	--secondary-color: #64748b;
	--accent-color: #0ea5e9;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--background: #ffffff;
	--surface: #f8fafc;
	--border: #e2e8f0;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
	font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background);
}

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

/* Navigation */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: var(--shadow);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

.nav-link {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	background: white;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	z-index: 1001;
	padding: 1.5rem;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-modal h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

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

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

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: var(--shadow-lg);
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.form-modal p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 24px;
	color: white;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

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

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: white;
}

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

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

.hero-content h1 {
	font-size: 3rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

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

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

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

.section-header h2 {
	font-size: 2.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	padding: 80px 0;
}

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

.about-text h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.about-text p {
	margin-bottom: 2rem;
	color: var(--text-secondary);
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: var(--surface);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.stat h4 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat p {
	color: var(--text-secondary);
}

/* Courses Section */
.courses {
	padding: 80px 0;
	background: var(--surface);
}

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

.course-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

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

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

.course-card h3 {
	padding: 1.5rem 1.5rem 1rem;
	color: var(--text-primary);
	font-size: 1.3rem;
}

.course-card p {
	padding: 0 1.5rem 1rem;
	color: var(--text-secondary);
}

.course-details {
	padding: 1rem 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--border);
}

.course-details span {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

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

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

.faq-item {
	border: 1px solid var(--border);
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

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

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

.faq-question h3 {
	color: var(--text-primary);
	font-size: 1.1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary-color);
	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 {
	padding: 1.5rem;
	max-height: 200px;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: var(--surface);
}

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

.contact-info h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	margin-top: 2rem;
}

.contact-info h3:first-child {
	margin-top: 0;
}

.contact-info p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border);
	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: var(--primary-color);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin-right: 0.5rem;
	margin-top: 0.2rem;
}

.checkbox-label input[type='checkbox']:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Program Pages */
.program-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	text-align: center;
}

.program-hero h1 {
	font-size: 3rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.program-hero p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
}

.methodology {
	padding: 80px 0;
}

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

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

.methodology-text h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.methodology-text p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.specializations {
	padding: 80px 0;
	background: var(--surface);
}

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

.spec-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.spec-card h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.spec-card p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

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

.spec-card li {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}

.spec-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
}

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

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

.story-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

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

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

.story-content {
	padding: 1.5rem;
}

.story-content h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.story-role {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 1rem;
}

.story-content p:last-child {
	color: var(--text-secondary);
	font-style: italic;
}

/* Footer */
.footer {
	background: var(--text-primary);
	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 h4 {
	margin-bottom: 1rem;
	color: var(--accent-color);
}

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

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

.footer-section a {
	color: #94a3b8;
	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 #374151;
	color: #94a3b8;
}

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

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

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

.legal-page h1 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 2rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 2rem 0 1rem;
}

.legal-page h3 {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin: 1.5rem 0 0.5rem;
}

.legal-page p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

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

.legal-page li {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: start;
		padding-top: 2rem;
		transition: left 0.3s ease;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

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

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

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

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

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

	.hero-buttons {
		flex-direction: column;
		gap: 0.5rem;
	}

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

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