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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

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

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

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

.cookie-content {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	max-width: 500px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transform: translateY(30px);
	transition: transform 0.3s ease;
}

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

.cookie-content h3 {
	margin-bottom: 15px;
	color: #2c3e50;
	font-size: 1.5rem;
}

.cookie-content p {
	margin-bottom: 20px;
	color: #666;
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-accept {
	background: #27ae60;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.btn-accept:hover {
	background: #219a52;
}

.btn-decline {
	background: transparent;
	color: #666;
	border: 2px solid #ddd;
	padding: 10px 22px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-decline:hover {
	border-color: #999;
	color: #333;
}

.privacy-link {
	color: #3498db;
	text-decoration: none;
	font-size: 0.9rem;
}

.privacy-link:hover {
	text-decoration: underline;
}

/* Navigation Styles */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fffffe;
	z-index: 1000;
	padding: 15px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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;
	color: #2c3e50;
	text-decoration: none;
}

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

.nav-menu {
	display: flex;
	gap: 30px;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #3498db;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #3498db;
}

.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-section {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	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: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

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

.btn-primary {
	background: #e74c3c;
	color: white;
	border: 2px solid #e74c3c;
}

.btn-primary:hover {
	background: #c0392b;
	border-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
	background: white;
	color: #333;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #f39c12;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #2c3e50;
}

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

/* Programs Section */
.programs-section {
	background: #f8f9fa;
}

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

.program-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
	height: 200px;
	position: relative;
}

.program-content {
	padding: 30px;
}

.program-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #2c3e50;
}

.program-content p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.program-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feature {
	color: #27ae60;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Why Section */
.why-section {
	background: white;
}

.why-content {
	max-width: 900px;
	margin: 0 auto;
}

.why-text h3 {
	font-size: 2rem;
	margin-bottom: 25px;
	color: #2c3e50;
}

.why-text p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: #555;
	line-height: 1.7;
}

.why-highlights {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.highlight {
	background: #e8f6f3;
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #27ae60;
}

.highlight strong {
	color: #2c3e50;
}

/* FAQ Section */
.faq-section {
	background: #f8f9fa;
}

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

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
	color: #2c3e50;
	font-size: 1.2rem;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #3498db;
	font-weight: bold;
	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: 300px;
}

.faq-answer p {
	padding: 0 25px 25px;
	color: #666;
	line-height: 1.6;
}

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item h3 {
	color: #2c3e50;
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.contact-item p {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.contact-item small {
	color: #999;
	font-size: 0.9rem;
}

.contact-form {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 15px;
}

.contact-form h3 {
	color: #2c3e50;
	margin-bottom: 25px;
	font-size: 1.5rem;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

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

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.btn-submit {
	width: 100%;
	background: #e74c3c;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn-submit:hover {
	background: #c0392b;
}

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.about-hero-content h1 {
	font-size: 3rem;
	margin-bottom: 25px;
	font-weight: 700;
}

.about-hero-content p {
	font-size: 1.3rem;
	max-width: 900px;
	margin: 0 auto;
	opacity: 0.95;
	line-height: 1.6;
}

.mission-section {
	background: white;
}

.mission-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
}

.mission-text h2 {
	font-size: 2.2rem;
	margin-bottom: 25px;
	color: #2c3e50;
}

.mission-text p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: #555;
	line-height: 1.7;
}

.mission-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.stat-card {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	border-left: 4px solid #3498db;
}

.stat-card .stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #2c3e50;
	display: block;
	margin-bottom: 5px;
}

.stat-card .stat-label {
	color: #666;
	font-size: 0.9rem;
}

.team-section {
	background: #f8f9fa;
}

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

.team-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.team-image {
	margin: 0 auto 20px;
}

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

.team-info h3 {
	color: #2c3e50;
	margin-bottom: 5px;
	font-size: 1.3rem;
}

.team-role {
	color: #3498db;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1rem;
}

.team-info p {
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

.method-section {
	background: white;
}

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

.method-item {
	text-align: center;
	padding: 30px;
}

.method-emoji {
	font-size: 3rem;
	margin-bottom: 20px;
}

.method-item h3 {
	color: #2c3e50;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.method-item p {
	color: #666;
	line-height: 1.6;
}

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

.success-modal.active {
	opacity: 1;
	visibility: visible;
}

.success-content {
	background: white;
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	max-width: 500px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transform: translateY(30px);
	transition: transform 0.3s ease;
}

.success-modal.active .success-content {
	transform: translateY(0);
}

.success-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

.success-content h3 {
	color: #27ae60;
	margin-bottom: 15px;
	font-size: 1.8rem;
}

.success-content p {
	color: #666;
	margin-bottom: 25px;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	margin-bottom: 20px;
	color: #ecf0f1;
	font-size: 1.3rem;
}

.footer-section h4 {
	margin-bottom: 15px;
	color: #bdc3c7;
	font-size: 1.1rem;
}

.footer-section p {
	color: #95a5a6;
	line-height: 1.6;
	margin-bottom: 10px;
}

.footer-contact p {
	margin-bottom: 5px;
	font-size: 0.95rem;
}

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

.footer-section ul li {
	margin-bottom: 8px;
}

.footer-section ul li a {
	color: #95a5a6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #3498db;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 20px;
	text-align: center;
	color: #95a5a6;
	font-size: 0.9rem;
}

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

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

/* ...existing styles... */

/* Legal Page Styles */
.legal-section {
	padding: 120px 0 80px;
	background: #f8f9fa;
	min-height: 100vh;
}

.legal-content {
	background: white;
	padding: 60px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 900px;
	margin: 0 auto;
}

.legal-content h1 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-bottom: 10px;
	border-bottom: 3px solid #3498db;
	padding-bottom: 10px;
}

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

.legal-text h2 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin: 30px 0 15px 0;
	border-left: 4px solid #3498db;
	padding-left: 15px;
}

.legal-text h3 {
	color: #34495e;
	font-size: 1.2rem;
	margin: 20px 0 10px 0;
}

.legal-text p {
	color: #555;
	line-height: 1.7;
	margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
	margin: 15px 0 15px 20px;
	color: #555;
}

.legal-text li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.contact-info {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #27ae60;
	margin: 20px 0;
}

.contact-info p {
	margin-bottom: 5px;
	color: #2c3e50;
}

/* ...existing styles... */
