* {
	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: #fff;
	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;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	color: #333;
}

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

.nav-menu ul {
	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;
}

/* 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 center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
	font-size: 1.2rem;
	margin: 0 auto 2rem;
	max-width: 600px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.9s;
}

.btn-primary,
.btn-secondary,
.btn-outline {
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

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

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

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

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

.btn-outline {
	background: transparent;
	color: #007bff;
	border: 2px solid #007bff;
}

.btn-outline:hover {
	background: #007bff;
	color: white;
}

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

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

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

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

.section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #666;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

.stat {
	text-align: center;
}

.stat h3 {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 0.5rem;
}

.stat p {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

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

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

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

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

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

.program-card p {
	margin-bottom: 1.5rem;
	color: #666;
}

.program-card ul {
	list-style: none;
	margin-bottom: 2rem;
}

.program-card li {
	padding: 0.25rem 0;
	color: #666;
}

.program-card li:before {
	content: '✓ ';
	color: #007bff;
	font-weight: bold;
	margin-right: 0.5rem;
}

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

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

.contact-details {
	margin-top: 2rem;
}

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

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

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

/* Form */
.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;
}

/* Checkbox styling */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
	margin-bottom: 0;
}

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

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	margin-right: 0.75rem;
	margin-top: 2px;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background: #007bff;
	border-color: #007bff;
}

.checkbox-label input[type='checkbox']:checked + .checkmark:after {
	content: '✓';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-label:hover .checkmark {
	border-color: #007bff;
}

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	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;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

.form-modal p {
	margin-bottom: 2rem;
	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 {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 2rem;
}

/* Programs Page */
.programs-hero {
	padding: 120px 0 80px;
	background: #f8f9fa;
	text-align: center;
}

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

.program-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	text-align: left;
}

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

.program-detail.reverse > * {
	direction: ltr;
}

.program-image img {
	width: 100%;
	border-radius: 10px;
}

.program-features {
	margin: 2rem 0;
}

.program-features h3 {
	margin-bottom: 1rem;
	color: #333;
}

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

.program-features li {
	padding: 0.5rem 0;
	color: #666;
}

.program-features li:before {
	content: '• ';
	color: #007bff;
	font-weight: bold;
	margin-right: 0.5rem;
}

.program-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.program-meta span {
	background: #f8f9fa;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #666;
}

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

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

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	cursor: pointer;
}

.faq-question h3 {
	font-size: 1.1rem;
	color: #333;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #007bff;
	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;
	padding-bottom: 1rem;
}

.faq-answer p {
	margin: 0;
	color: #666;
}

/* CTA Section */
.cta-section {
	background: #007bff;
	color: white;
}

.cta-section h2,
.cta-section p {
	color: white;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 2rem;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

.btn-accept {
	background: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.btn-decline {
	background: #6c757d;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.cookie-link {
	color: #007bff;
	text-decoration: none;
	font-size: 0.9rem;
}

/* 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;
}

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

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

.footer-section a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 1rem;
	text-align: center;
	color: #ccc;
}

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

/* Responsive */
@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: start;
		align-items: center;
		transition: left 0.3s ease;
		padding-top: 2rem;
	}

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

	.nav-menu ul {
		flex-direction: column;
		gap: 2rem;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

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

	.program-meta {
		flex-direction: column;
		gap: 0.5rem;
	}
}

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

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

	.section {
		padding: 60px 0;
	}

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

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

.legal-page {
	padding: 120px 0 80px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}
.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #333;
}
.legal-page h2 {
	margin: 2rem 0 1rem;
	color: #333;
	font-size: 1.5rem;
}
.legal-page p {
	margin-bottom: 1rem;
	color: #666;
}
.legal-page ul {
	margin-bottom: 1rem;
	padding-left: 2rem;
}
.legal-page li {
	margin-bottom: 0.5rem;
	color: #666;
}
