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

:root {
	--primary-color: #2563eb;
	--secondary-color: #f8fafc;
	--text-color: #1e293b;
	--text-light: #64748b;
	--border-color: #e2e8f0;
	--white: #ffffff;
	--black: #000000;
	--success: #10b981;
	--warning: #f59e0b;
	--error: #ef4444;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--white);
}

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

/* Animation Classes */
.animate-section {
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.6s ease-out;
}

.animate-section.animate-in {
	opacity: 1;
	transform: scale(1);
}

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

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

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

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	border-top: 1px solid var(--border-color);
	padding: 1.5rem;
	z-index: 2000;
	transform: translateY(100%);
	transition: transform 0.3s ease-out;
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cookie-content h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.cookie-content p {
	color: var(--text-light);
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

/* Buttons */
.btn-primary {
	background: var(--primary-color);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-secondary {
	background: transparent;
	color: var(--text-color);
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	padding: 0.75rem 1.5rem;
	border: 2px solid var(--primary-color);
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--secondary-color) 0%,
		var(--white) 100%
	);
}

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

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

.hero-content p {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

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

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

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

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

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

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

.about-item {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.about-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.about-item p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Stats Section */
.stats {
	padding: 80px 0;
	background: var(--secondary-color);
}

.stats-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.stats-content > p {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: var(--text-light);
	font-weight: 500;
}

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

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

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.contact-info > p {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item strong {
	display: block;
	color: var(--text-color);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: var(--text-light);
	margin: 0;
}

.contact-form {
	background: var(--secondary-color);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.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-color);
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

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

/* Checkbox Styling */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--text-light);
}

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

.checkmark {
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border: 2px solid var(--border-color);
	border-radius: 4px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
	border-color: var(--primary-color);
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

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

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: var(--secondary-color);
}

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

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

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

.faq-question:hover {
	background: var(--secondary-color);
}

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

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

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

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-light);
	line-height: 1.6;
}

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

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

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

.courses-hero p {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
}

.courses-grid {
	padding: 80px 0;
}

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

.course-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-image {
	height: 200px;
	overflow: hidden;
}

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

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.course-content > p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.course-details {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.course-details span {
	background: var(--secondary-color);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: var(--primary-color);
	font-weight: 500;
}

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

.course-features li {
	color: var(--text-light);
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1rem;
}

.course-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: bold;
}

.learning-process {
	padding: 80px 0;
	background: var(--secondary-color);
}

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

.process-step {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.step-number {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.step-content p {
	color: var(--text-light);
	line-height: 1.6;
}

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

.benefits {
	padding: 80px 0;
}

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

.benefit-item {
	padding: 2rem;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.benefit-item p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Footer */
.footer {
	background: var(--text-color);
	color: var(--white);
	padding: 60px 0 20px;
	margin-top: 80px;
}

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

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

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

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

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

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
	color: #94a3b8;
}

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

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

.legal-content h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

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

.legal-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: var(--text-color);
}

.legal-content p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: var(--text-light);
}

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

.legal-content li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: var(--text-light);
}

.legal-content strong {
	color: var(--text-color);
}

.legal-meta {
	background: var(--secondary-color);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Form Success Message */
.form-success {
	background: #dcfce7;
	border: 1px solid #bbf7d0;
	color: #166534;
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	display: none;
}

.form-success.show {
	display: block;
}

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

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

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

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

.modal-content h3 {
	color: var(--success);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.modal-content p {
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	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);
	}
}

.loading-text {
	color: var(--text-light);
	font-size: 1rem;
	margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--white);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

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

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

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

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

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

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

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

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

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

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

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

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

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

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

	.btn-primary,
	.btn-secondary,
	.btn-outline {
		width: 100%;
		text-align: center;
	}
}
