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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

.btn {
	display: inline-block;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

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

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

.btn-secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.btn-secondary:hover {
	background: white;
	color: #333;
}

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

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

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

/* Sections */
.section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.6s ease;
}

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

.section-content {
	text-align: center;
}

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

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

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

.about-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

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

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

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

/* Features Section */
.features {
	text-align: left;
}

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

.features p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.8;
}

/* Courses Grid */
.courses-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

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

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

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

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

.course-content {
	padding: 2rem;
}

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

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

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

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

.course-features ul {
	list-style: none;
}

.course-features li {
	padding: 0.5rem 0;
	color: #666;
	position: relative;
	padding-left: 1.5rem;
}

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

/* Learning Approach */
.learning-approach {
	background: #f8f9fa;
}

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

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

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

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

/* Success Stories */
.success-stories .section-content {
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
}

.success-stories p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.8;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

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

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

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	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 {
	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 {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

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

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
	text-align: left;
}

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

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

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
}

.contact-item p {
	margin: 0;
	color: #666;
}

.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;
	font-weight: 500;
	color: #333;
}

.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: #007bff;
}

.form-group textarea {
	resize: vertical;
}

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

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	min-width: 18px;
	height: 18px;
	accent-color: #007bff;
}

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	z-index: 2000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	padding: 1.5rem;
}

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

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

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

.btn-accept {
	background: #28a745;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.3s ease;
}

.btn-accept:hover {
	background: #218838;
}

.btn-decline {
	background: #6c757d;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.3s ease;
}

.btn-decline:hover {
	background: #5a6268;
}

/* Form Success 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: 3000;
	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: 10px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	margin-bottom: 1rem;
	color: #28a745;
}

.form-modal p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
}

/* 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 {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #555;
	color: #ccc;
}

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

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

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

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

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

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

.legal-page li {
	margin-bottom: 0.5rem;
	color: #666;
}

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: 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;
	}

	.nav-menu a {
		padding: 1rem 0;
		display: block;
		font-size: 1.1rem;
	}

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

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

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

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

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

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

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

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

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

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

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

	.section {
		padding: 60px 0;
	}

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

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

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