/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background-color: #0a0a0a;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid #333;
}

.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: 10px;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

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

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

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

.nav-menu a:hover {
	color: #4a9eff;
}

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

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

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

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

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

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

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #4a9eff, #0066cc);
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

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

/* Sections */
section {
	padding: 80px 0;
}

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

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

/* Why Choose Section */
.why-choose {
	background: #111;
}

.why-choose h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #fff;
}

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

.feature {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #333;
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #fff;
}

.feature p {
	color: #b0b0b0;
}

/* Programs Section */
.programs {
	background: #0a0a0a;
}

.programs h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #fff;
}

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

.program-card {
	background: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #333;
	transition: transform 0.3s ease;
}

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

.program-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

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

.program-card p {
	margin: 0 1.5rem 1rem;
	color: #b0b0b0;
}

.program-card ul {
	margin: 0 1.5rem 1.5rem;
	padding-left: 1rem;
	color: #b0b0b0;
}

.program-card li {
	margin-bottom: 0.5rem;
}

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

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

.contact-info h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.contact-info p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #b0b0b0;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

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

.contact-form {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #333;
}

.contact-form h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 1rem;
	margin-bottom: 1rem;
	background: #0a0a0a;
	border: 1px solid #333;
	border-radius: 8px;
	color: #e0e0e0;
	font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #4a9eff;
}

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

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 4px 0 0 0;
	flex-shrink: 0;
}

.checkbox-container label {
	font-size: 0.9rem;
	color: #b0b0b0;
	line-height: 1.4;
}

.contact-form button {
	background: linear-gradient(135deg, #4a9eff, #0066cc);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease;
	width: 100%;
}

.contact-form button:hover {
	transform: translateY(-2px);
}

/* FAQ Section */
.faq {
	background: #0a0a0a;
}

.faq h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #fff;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #1a1a1a;
	margin-bottom: 1rem;
	border-radius: 8px;
	border: 1px solid #333;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem;
	text-align: left;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

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

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

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

.faq-answer p {
	color: #b0b0b0;
	line-height: 1.6;
}

/* About Page Specific Styles */
.about-hero {
	padding: 120px 0 80px;
	text-align: center;
}

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

.about-hero p {
	font-size: 1.2rem;
	color: #b0b0b0;
	max-width: 800px;
	margin: 0 auto;
}

.our-story {
	background: #111;
}

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

.story-text h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.story-text p {
	margin-bottom: 1.5rem;
	color: #b0b0b0;
	line-height: 1.7;
}

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

.mission-values {
	background: #0a0a0a;
}

.mission-values h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #fff;
}

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

.value-item {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #333;
}

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

.value-item p {
	color: #b0b0b0;
}

.team {
	background: #111;
}

.team h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #fff;
}

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

.team-member {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #333;
	text-align: center;
}

.team-member img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.team-member h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #fff;
}

.team-member p {
	color: #b0b0b0;
	margin-bottom: 1rem;
}

.team-member strong {
	color: #4a9eff;
}

/* Footer */
.footer {
	background: #000;
	padding: 3rem 0 1rem;
	border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
	color: #fff;
	margin-bottom: 1rem;
}

.footer-section h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
}

.footer-section p,
.footer-section li {
	color: #b0b0b0;
	margin-bottom: 0.5rem;
}

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

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

.footer-section a:hover {
	color: #4a9eff;
}

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.cookie-content {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	max-width: 500px;
	margin: 0 20px;
	border: 1px solid #333;
}

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

.cookie-content p {
	color: #b0b0b0;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.btn-accept,
.btn-decline {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #4a9eff;
	color: white;
}

.btn-accept:hover {
	background: #0066cc;
}

.btn-decline {
	background: transparent;
	color: #b0b0b0;
	border: 1px solid #333;
}

.btn-decline:hover {
	background: #333;
	color: #fff;
}

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: #1a1a1a;
	padding: 3rem;
	border-radius: 12px;
	max-width: 400px;
	margin: 0 20px;
	border: 1px solid #333;
	text-align: center;
}

.form-modal-content h3 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.form-modal-content p {
	color: #b0b0b0;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

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

.success-icon {
	width: 60px;
	height: 60px;
	border: 4px solid #4caf50;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	position: relative;
	display: none;
}

.success-icon::after {
	content: '';
	width: 12px;
	height: 20px;
	border: solid #4caf50;
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -14px;
	margin-left: -6px;
}

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

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

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

.legal-page h3 {
	font-size: 1.5rem;
	margin: 1.5rem 0 1rem;
	color: #fff;
}

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

.legal-page ul,
.legal-page ol {
	margin: 1rem 0 1rem 2rem;
	color: #b0b0b0;
}

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

.legal-page strong {
	color: #fff;
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(10, 10, 10, 0.95);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
		backdrop-filter: blur(10px);
	}

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

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

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

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

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

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

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

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

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

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

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

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

	section {
		padding: 60px 0;
	}

	.contact-form,
	.cookie-content {
		padding: 1.5rem;
	}
}
