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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	overflow-x: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-attachment: fixed;
}

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

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(26, 26, 26, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar {
	padding: 1rem 0;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	background-size: 300% 300%;
	animation: gradientShift 3s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	text-decoration: none;
}

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

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

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

.nav-menu a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 25px;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transform: translateY(-2px);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 80%;
}

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.cookie-content {
	padding: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-content h3 {
	margin-bottom: 15px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
}

.cookie-content p {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 14px 28px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	font-size: 0.95rem;
	letter-spacing: 0.3px;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
	background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.btn-accept {
	background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.btn-accept:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 184, 148, 0.5);
}

.btn-decline {
	background: linear-gradient(135deg, #e17055 0%, #d63031 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(225, 112, 85, 0.4);
}

.btn-decline:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(225, 112, 85, 0.5);
}

/* Main Content */
main {
	margin-top: 80px;
}

/* Animation */
.animate-section {
	opacity: 0;
	transform: translateY(60px) scale(0.95);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Hero Section */
.hero {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
	color: white;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
	opacity: 0.1;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #fff 0%, #f1f2f6 50%, #ddd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	letter-spacing: -2px;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
}

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

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: transform 0.3s ease;
}

.hero-image:hover img {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* About Section */
.about {
	padding: 120px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
}

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

.section-header h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #1a1a1a 0%, #667eea 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

.about-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	padding: 3rem 2.5rem;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #4ecdc4);
	background-size: 300% 300%;
	animation: gradientShift 3s ease infinite;
}

.about-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.about-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
	font-weight: 700;
}

.about-card p {
	color: #666;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* Features Section */
.features {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: white;
	position: relative;
}

.features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v20h40V20H20z'/%3E%3C/g%3E%3C/svg%3E")
		repeat;
}

.features .section-header h2 {
	color: #fff;
	background: linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features .section-header p {
	color: rgba(255, 255, 255, 0.8);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 2;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.feature-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
}

.feature-card:hover img {
	transform: scale(1.05);
}

.feature-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	color: #fff;
	font-weight: 700;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	font-size: 1.05rem;
}

/* FAQ Section */
.faq {
	padding: 120px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
}

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

.faq-item {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	margin-bottom: 1.5rem;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

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

.faq-question:hover {
	background: rgba(102, 126, 234, 0.05);
}

.faq-question h3 {
	color: #1a1a1a;
	font-size: 1.2rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.8rem;
	color: #667eea;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	font-weight: 300;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.faq-answer p {
	padding: 0 2rem 2rem;
	color: #666;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* Contact Section */
.contact {
	padding: 120px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.contact .section-header h2 {
	color: #fff;
	background: linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact .section-header p {
	color: rgba(255, 255, 255, 0.9);
}

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

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

.contact-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.contact-item h3 {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
}

.contact-item p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-group-checkbox input[type='checkbox'] {
	width: 18px;
	height: 18px;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
	accent-color: #764ba2;
	cursor: pointer;
	flex-shrink: 0;
}

.form-group-checkbox label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	cursor: pointer;
	line-height: 1.5;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 60px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1.5rem;
	color: #fff;
	font-weight: 700;
}

.footer-section h3 {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.5rem;
}

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

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

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-section ul li a:hover {
	color: #4ecdc4;
	transform: translateX(5px);
}

.footer-section ul li a::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	width: 0;
	height: 2px;
	background: #4ecdc4;
	transition: width 0.3s ease;
	transform: translateY(-50%);
}

.footer-section ul li a:hover::before {
	width: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* Page 2 Specific Styles */
.courses-hero {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.courses-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
	opacity: 0.1;
}

.courses-hero .section-header {
	position: relative;
	z-index: 2;
}

.courses-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
	position: relative;
	z-index: 2;
}

.stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	opacity: 0.9;
	font-weight: 500;
}

.course-categories {
	padding: 120px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
}

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

.category-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #4ecdc4);
	background-size: 300% 300%;
	animation: gradientShift 3s ease infinite;
}

.category-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-card:hover img {
	transform: scale(1.05);
}

.category-card h3 {
	padding: 2rem 2rem 1rem;
	color: #1a1a1a;
	font-size: 1.4rem;
	font-weight: 700;
}

.category-card p {
	padding: 0 2rem;
	color: #666;
	line-height: 1.7;
	font-size: 1.05rem;
}

.category-stats {
	padding: 1.5rem 2rem 2rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.category-stats span {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 0.6rem 1.2rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.learning-approach {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: white;
	position: relative;
}

.approach-content {
	max-width: 1000px;
	margin: 0 auto;
}

.approach-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
	text-align: center;
}

.approach-text > p {
	font-size: 1.1rem;
	color: #666;
	text-align: center;
	margin-bottom: 3rem;
}

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

.approach-feature {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.approach-feature h4 {
	margin-bottom: 1rem;
	color: #333;
}

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

.success-stories {
	padding: 120px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
}

.success-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 5rem;
}

.success-stat {
	text-align: center;
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.success-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #4ecdc4);
	background-size: 300% 300%;
	animation: gradientShift 3s ease infinite;
}

.success-stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.success-stat .stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.success-stat .stat-description {
	color: #666;
	line-height: 1.7;
	font-size: 1.05rem;
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #667eea;
	opacity: 0.3;
	font-family: serif;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-style: italic;
	font-size: 1.05rem;
	position: relative;
	z-index: 2;
}

.testimonial-author strong {
	color: #1a1a1a;
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 700;
	font-size: 1.1rem;
}

.testimonial-author span {
	color: #667eea;
	font-size: 0.95rem;
	font-weight: 500;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0;
	margin-top: 80px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	min-height: 100vh;
}

.legal-page .container {
	max-width: 800px;
}

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

.last-updated {
	color: #666;
	margin-bottom: 2rem;
	font-style: italic;
}

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

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

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

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

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

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

/* Success Message */
.success-message {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
	color: white;
	padding: 25px 50px;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 184, 148, 0.4);
	z-index: 10000;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(26, 26, 26, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		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 li {
		margin: 1rem 0;
	}

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

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

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

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

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

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

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

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.success-stats {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 480px) {
	.contact-form {
		padding: 20px;
	}

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

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

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

	.cookie-content {
		padding: 20px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 0.9rem;
	}

	.about-card,
	.feature-card,
	.category-card {
		padding: 2rem 1.5rem;
	}
}
