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

body {
	font-family: 'Cal Sans', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #0a0a0a;
}

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

/* Navigation */
.navbar {
	background-color: #111111;
	padding: 1rem 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(10px);
	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;
	gap: 10px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

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

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

.nav-menu a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #007bff;
}

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

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

/* Hero Section */
.hero,
.about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.hero.animate,
.about-hero.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero h1,
.about-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p,
.about-hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #cccccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.btn {
	padding: 12px 30px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

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

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

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

.btn-secondary:hover {
	background-color: #007bff;
	color: #ffffff;
}

/* Programs Section */
.programs {
	padding: 80px 0;
	background-color: #111111;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

.programs h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #ffffff;
}

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

.program-card {
	background-color: #1a1a1a;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid #333;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.program-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

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

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

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

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

.program-card li {
	color: #cccccc;
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}

.program-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007bff;
}

/* Why Choose Section */
.why-choose {
	padding: 80px 0;
	background-color: #0a0a0a;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

.why-choose h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #ffffff;
}

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

.feature {
	text-align: center;
	padding: 2rem;
}

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

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

.feature p {
	color: #cccccc;
}

/* Our Story Section */
.our-story {
	padding: 80px 0;
	background-color: #111111;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

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

.story-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #ffffff;
}

.story-text p {
	color: #cccccc;
	margin-bottom: 1.5rem;
}

.story-image {
	border-radius: 12px;
	overflow: hidden;
}

.story-image img {
	width: 100%;
	height: auto;
}

/* Contact Form Section */
.contact-form {
	padding: 80px 0;
	background-color: #0a0a0a;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

.contact-form h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.contact-form > .container > p {
	text-align: center;
	color: #cccccc;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #333;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #ffffff;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #333;
	border-radius: 6px;
	background-color: #111111;
	color: #ffffff;
	font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

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

.checkbox-group label {
	font-weight: normal;
	font-size: 0.9rem;
	color: #cccccc;
}

.checkbox-group a {
	color: #007bff;
	text-decoration: none;
}

.checkbox-group a:hover {
	text-decoration: underline;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: #111111;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #ffffff;
}

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

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

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

.faq-question:hover {
	background-color: #222222;
}

.faq-question h3 {
	color: #ffffff;
	font-size: 1.1rem;
}

.faq-toggle {
	color: #007bff;
	font-size: 1.5rem;
	font-weight: bold;
	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: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
	color: #cccccc;
}

/* Footer */
.footer {
	background-color: #111111;
	padding: 40px 0 20px;
	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 {
	color: #ffffff;
	margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
	color: #007bff;
}

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

/* Cookie Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.modal-content h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.modal-content p {
	color: #cccccc;
	margin-bottom: 2rem;
}

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

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

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

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

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

.legal-page p {
	color: #cccccc;
	margin-bottom: 1rem;
}

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

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

.legal-page a {
	color: #007bff;
	text-decoration: none;
}

.legal-page a:hover {
	text-decoration: underline;
}

/* Success Message */
.success-message {
	background-color: #28a745;
	color: #ffffff;
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	display: none;
}

.success-message.show {
	display: block;
}

/* Submission Modal Styles */
#submissionLoader,
#submissionSuccess {
	text-align: center;
}

#submissionLoader p {
	margin-top: 1rem;
	font-size: 1.1rem;
}

.spinner {
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top: 4px solid #007bff;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

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

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

#submissionSuccess h3 {
	color: #ffffff;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #111111;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		border-top: 1px solid #333;
	}

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

	.nav-menu li {
		padding: 1rem 0;
	}

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

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

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

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

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

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

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

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

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

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

	.programs h2,
	.why-choose h2,
	.contact-form h2,
	.faq h2 {
		font-size: 2rem;
	}

	.program-card,
	.contact-form-container {
		padding: 1.5rem;
	}
}
