* {
	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: #333;
	background-color: #fff;
}

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

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link.active {
	color: #333;
}

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

.cookie-modal.hidden {
	display: none;
}

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 500px;
	margin: 0 20px;
	text-align: center;
}

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

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

/* Button Styles */
.btn-primary {
	background: #333;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-secondary {
	background: transparent;
	color: #333;
	padding: 12px 24px;
	border: 2px solid #333;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

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

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

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

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

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

/* Programs Hero */
.programs-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f9fa;
}

.programs-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

/* Section Headers */
.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.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

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

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

.about-card {
	text-align: center;
	padding: 2rem;
	border-radius: 10px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

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

.about-card h3 {
	margin-bottom: 1rem;
	color: #333;
}

.about-card p {
	color: #666;
	line-height: 1.7;
}

/* Courses Section */
.courses {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

.course-image {
	height: 200px;
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-placeholder {
	font-size: 3rem;
}

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	margin-bottom: 1rem;
	color: #333;
}

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

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

.course-details span {
	background: #e9ecef;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #666;
}

/* Specializations */
.specializations {
	padding: 80px 0;
}

.specializations-grid {
	display: grid;
	gap: 2rem;
}

.spec-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	border: 1px solid #e0e0e0;
	transition: transform 0.3s ease;
}

.spec-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.spec-card p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.spec-features {
	list-style: none;
	margin-bottom: 1.5rem;
}

.spec-features li {
	color: #666;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

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

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

.spec-meta span {
	background: #f8f9fa;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #666;
}

/* Bootcamps */
.bootcamps {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.bootcamp-info h3 {
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.8rem;
}

.bootcamp-info p {
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.feature-item h4 {
	margin-bottom: 0.5rem;
	color: #333;
}

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

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

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

.story-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
	border-left: 4px solid #333;
}

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

.story-author strong {
	color: #333;
	display: block;
	margin-bottom: 0.25rem;
}

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

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

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

.faq-item {
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	margin-bottom: 1rem;
	overflow: hidden;
}

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

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

.faq-question h3 {
	color: #333;
	font-size: 1.1rem;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #666;
	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;
}

.faq-answer p {
	color: #666;
	line-height: 1.7;
	margin: 0;
}

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

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

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

.contact-item h3 {
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: 500;
}

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

.form-group textarea {
	resize: vertical;
}

/* Footer */
.footer {
	padding: 50px 0 20px;
	background: #333;
	color: white;
}

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

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

/* Form 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: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	margin: 0 20px;
	transform: translateY(50px);
	transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
	transform: translateY(0);
}

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

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

.loading-text {
	color: #666;
	font-size: 1.1rem;
	margin: 0;
}

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

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

.success-content p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Checkbox Styles */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin-right: 10px;
	margin-top: 2px;
	flex-shrink: 0;
}

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

/* 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: center;
		align-items: center;
		transition: left 0.3s ease;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

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

	.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-content h1 {
		font-size: 2rem;
	}

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

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

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

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

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

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

	.bootcamp-features {
		grid-template-columns: 1fr;
	}
}

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

	.navbar {
		padding: 1rem 15px;
	}

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

	.hero-content p {
		font-size: 1rem;
	}

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

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

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

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

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

.legal-page .last-updated {
	color: #666;
	font-style: italic;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e0e0e0;
}

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

.legal-page h3 {
	font-size: 1.2rem;
	color: #333;
	margin: 1.5rem 0 0.5rem 0;
}

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

.legal-page ul {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

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