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

body {
	font-family: 'Cal Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
}

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

/* Navigation */
.nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

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

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

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

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

.nav-link:hover,
.nav-link.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;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 1001;
	max-width: 400px;
	padding: 0;
	animation: slideUp 0.3s ease;
}

.cookie-modal.show {
	display: block;
}

.cookie-content {
	padding: 1.5rem;
}

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

.cookie-content p {
	margin-bottom: 1rem;
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

.cookie-buttons {
	display: flex;
	gap: 0.5rem;
}

.cookie-buttons .btn {
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
}

@keyframes slideUp {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Form Modal Styles */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1003;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.form-modal-content {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #e9ecef;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	margin: 0 auto 1rem;
	animation: bounceIn 0.6s ease;
}

.error-icon {
	width: 60px;
	height: 60px;
	background: #dc3545;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
}

.form-modal-content p {
	margin: 0;
	font-size: 1.1rem;
	color: #333;
	line-height: 1.5;
}

.form-modal-content.loading p {
	color: #666;
}

.form-modal-content.success p {
	color: #28a745;
	font-weight: 600;
}

.form-modal-content.error p {
	color: #dc3545;
	font-weight: 600;
}

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

@keyframes bounceIn {
	0% {
		transform: scale(0.3);
		opacity: 0;
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

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

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

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

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

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

.btn-outline:hover {
	background: #007bff;
	color: white;
	transform: translateY(-2px);
}

/* Sections */
.section {
	padding: 5rem 0;
}

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

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

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

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	margin-top: 70px;
}

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

.hero-text h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #333;
	line-height: 1.2;
}

.hero-text p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

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

/* About Section */
.about {
	background: white;
}

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

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

.about-text p {
	margin-bottom: 2rem;
	color: #666;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Courses Section */
.courses {
	background: #f8f9fa;
}

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

.course-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

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

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.8rem;
	color: #333;
}

.course-content p {
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.course-meta {
	display: flex;
	gap: 1rem;
}

.course-meta span {
	background: #e9ecef;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #495057;
}

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

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

.faq-item {
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 1rem;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	cursor: pointer;
}

.faq-question h3 {
	font-size: 1.2rem;
	color: #333;
}

.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: all 0.3s ease;
}

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

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

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

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

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

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

.contact-item p {
	color: #666;
	line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: inherit;
	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;
}

.form-group textarea {
	resize: vertical;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	margin-top: 0.1rem;
}

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

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

.programs-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.programs-header p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.bootcamps {
	background: white;
}

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

.program-feature {
	margin-bottom: 2rem;
}

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

.program-feature p {
	color: #666;
	line-height: 1.7;
	font-size: 1.1rem;
}

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

.specializations {
	background: #f8f9fa;
}

.specialization-content {
	max-width: 900px;
	margin: 0 auto;
}

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

.specialization-item {
	text-align: center;
	padding: 2rem;
}

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

.specialization-item h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #333;
}

.specialization-item p {
	color: #666;
	line-height: 1.6;
	font-size: 1.1rem;
}

.career-services {
	background: white;
}

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

.career-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #666;
	margin-bottom: 1.5rem;
}

.success-stories {
	background: #f8f9fa;
}

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

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

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

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

.story-content h3 {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	color: #333;
}

.story-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-style: italic;
}

.story-meta {
	color: #007bff;
	font-weight: 600;
}

.application {
	background: white;
}

.application-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.step {
	text-align: center;
	padding: 2rem 1rem;
}

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

.step h3 {
	margin-bottom: 0.8rem;
	color: #333;
}

.step p {
	color: #666;
	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;
	color: white;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

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

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

/* Legal Pages */
.legal-page {
	margin-top: 70px;
	padding: 3rem 0;
	background: white;
}

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 2rem 0;
		gap: 2rem;
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.nav-menu.show {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	.nav-link {
		font-size: 1.2rem;
		padding: 1rem 2rem;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.nav-link:hover {
		background: rgba(0, 123, 255, 0.1);
	}

	.nav-toggle {
		display: flex;
		z-index: 1001;
	}

	.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-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

	.btn {
		width: 100%;
		max-width: 300px;
	}

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

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

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

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

	.cookie-modal {
		left: 20px;
		right: 20px;
		max-width: none;
	}
}

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

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

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

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

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