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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

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

/* Header */
.header {
	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 {
	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-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

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

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	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;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

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

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

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

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

.hero-text h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

/* Section Styling */
section {
	padding: 80px 0;
}

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

.section-header h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

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

.about-text p {
	margin-bottom: 2rem;
	color: #666;
}

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

/* Features Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

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

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

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

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

/* Courses Page */
.courses-hero {
	padding: 120px 0 80px;
	background: #f8f9fa;
}

.courses-hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

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

.category-item {
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.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 4px 6px 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;
}

.course-info {
	padding: 1.5rem;
}

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

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

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

.learning-benefits {
	background: #f8f9fa;
}

.benefits-text {
	max-width: 800px;
	margin: 0 auto;
}

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

.benefit-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.cta-section {
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

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

.cta-buttons .btn-secondary {
	border-color: white;
	color: white;
}

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

/* FAQ Section */
.faq-content {
	max-width: 800px;
	margin: 0 auto;
}

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

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

.faq-question:hover {
	color: #007bff;
}

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

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

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

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

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

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

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

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

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

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px 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 textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e9ecef;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.checkbox-group input[type='checkbox'] {
	width: auto;
	margin: 0;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.checkbox-label {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
	cursor: pointer;
}

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

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

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

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

.footer-section a {
	color: #ccc;
	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 #555;
	color: #ccc;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background: white;
	padding: 2rem;
	margin: 20px;
	border-radius: 12px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

.legal-page h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

.legal-page h3 {
	font-size: 1.3rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.legal-page section {
	padding: 0;
	margin-bottom: 2rem;
}

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

.legal-page li {
	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: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

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

	.cta-content h2 {
		font-size: 2rem;
	}

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

	.cookie-content {
		margin: 10px;
	}

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

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

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

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}

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

	.nav {
		padding: 1rem;
	}

	.container {
		padding: 0 15px;
	}
}
