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

:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--accent-color: #e74c3c;
	--text-color: #333;
	--text-light: #666;
	--background-light: #f8f9fa;
	--white: #ffffff;
	--border-color: #e1e8ed;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	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;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

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

.nav-menu a:hover {
	color: var(--secondary-color);
}

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

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow-hover);
	padding: 1.5rem;
	max-width: 400px;
	z-index: 1001;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-modal h3 {
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.cookie-modal p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

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

.btn-accept,
.btn-decline {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

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

.btn-decline {
	background: var(--border-color);
	color: var(--text-color);
}

.btn-accept:hover,
.btn-decline:hover {
	transform: translateY(-2px);
}

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

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 0;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	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;
	z-index: -1;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	max-width: 600px;
	opacity: 0.95;
}

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

.btn-primary,
.btn-secondary {
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

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

.btn-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
	transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
	padding: 120px 0 80px;
	background: var(--background-light);
	text-align: center;
}

.page-hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	color: var(--text-light);
}

/* Sections */
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;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

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

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

.about-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

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

.about-card-image {
	margin-bottom: 1rem;
}

.about-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.about-card h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

/* Courses Section */
.courses {
	background: var(--background-light);
}

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

.course-card {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

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

.course-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	font-size: 1.4rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.course-meta {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Programs Page */
.programs-overview {
	padding: 60px 0;
	background: var(--background-light);
}

.detailed-programs {
	padding: 80px 0;
}

.program-detail {
	margin-bottom: 6rem;
}

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

.program-detail.reverse .program-content {
	direction: rtl;
}

.program-detail.reverse .program-text {
	direction: ltr;
}

.program-text h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.program-features {
	list-style: none;
	margin: 1.5rem 0;
}

.program-features li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

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

.program-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

.program-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

/* Success Stories */
.success-stories {
	background: var(--background-light);
}

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

.story-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.story-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.student-emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.story-card blockquote {
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.student-info strong {
	display: block;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.student-info span {
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Application Process */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step {
	text-align: center;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
}

.step h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

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

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

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

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

.faq-question h3 {
	color: var(--primary-color);
	font-size: 1.2rem;
}

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

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

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

/* Contact Section */
.contact {
	background: var(--background-light);
}

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

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

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

.contact-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

.contact-form {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	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: var(--secondary-color);
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: var(--white);
	padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.footer-links h4,
.footer-legal h4 {
	margin-bottom: 1rem;
	color: var(--secondary-color);
}

.footer-links a,
.footer-legal a {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
	color: var(--white);
}

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

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

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

.legal-page h2 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin: 2rem 0 1rem;
}

.legal-page h3 {
	color: var(--primary-color);
	margin: 1.5rem 0 0.5rem;
}

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

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

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

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

/* Contact Form Modal */
.form-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: 1002;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.modal-content {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: var(--shadow-hover);
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

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

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--secondary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: var(--white);
	font-size: 2rem;
}

.modal-title {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.modal-message {
	color: var(--text-light);
	line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: var(--white);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
	}

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

	.nav-toggle {
		display: flex;
	}

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

	.hero p {
		font-size: 1.1rem;
	}

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

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

	.program-detail.reverse .program-content {
		direction: ltr;
	}

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

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

	.program-meta {
		font-size: 0.8rem;
	}

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

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

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

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

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

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