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

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

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

/* Navigation */
.navbar {
	background: #f8f3e4;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	color: #4f46e5;
	text-decoration: none;
}

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

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

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

.nav-link:hover,
.nav-link.active {
	color: #4f46e5;
}

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 2000;
	padding: 20px;
	max-width: 500px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

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

.cookie-content h3 {
	margin-bottom: 10px;
	color: #333;
}

.cookie-content p {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.5;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.btn-accept,
.btn-decline {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

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

.btn-accept:hover {
	background: #4338ca;
}

.btn-decline {
	background: #f3f4f6;
	color: #6b7280;
}

.btn-decline:hover {
	background: #e5e7eb;
}

.cookie-link {
	font-size: 12px;
	color: #6b7280;
	text-decoration: none;
}

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

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

.modal-content {
	background-color: white;
	margin: 15% auto;
	padding: 30px;
	border: none;
	border-radius: 12px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal.show {
	display: block;
}

.modal-header {
	margin-bottom: 20px;
}

.modal-header h3 {
	font-size: 1.5rem;
	color: #1f2937;
	margin-bottom: 10px;
}

.modal-body {
	margin-bottom: 20px;
}

.modal-body p {
	color: #6b7280;
	line-height: 1.6;
}

/* Loading Spinner */
.loading-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #f3f4f6;
	border-radius: 50%;
	border-top-color: #4f46e5;
	animation: spin 1s ease-in-out infinite;
	margin-bottom: 15px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.success-icon {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: #10b981;
	border-radius: 50%;
	color: white;
	font-size: 2rem;
	line-height: 60px;
	margin-bottom: 15px;
}

/* Checkbox Styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	color: #4b5563;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #e5e7eb;
	border-radius: 4px;
	background-color: white;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
	position: relative;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background-color: #4f46e5;
	border-color: #4f46e5;
}

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

.checkbox-container input[type='checkbox']:focus + .checkmark {
	border-color: #4f46e5;
	box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
}

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

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

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

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

.btn-primary {
	background: #ffffff;
	color: #4f46e5;
}

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

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

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

.hero-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

section h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 20px;
	color: #1f2937;
}

.section-intro {
	font-size: 1.1rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
	color: #6b7280;
}

/* Practical AI Section */
.practical-ai {
	background: #f9fafb;
}

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

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

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

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

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #1f2937;
}

.feature-card p {
	color: #6b7280;
	line-height: 1.6;
}

/* Success Stories */
.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.story-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

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

.story-content {
	padding: 25px;
}

.story-content h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #1f2937;
}

.story-content p {
	color: #6b7280;
	margin-bottom: 15px;
	line-height: 1.6;
}

.story-impact {
	background: #e0f2fe;
	color: #0277bd;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
}

/* Getting Started */
.getting-started {
	background: #f9fafb;
}

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

.step {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.step-number {
	background: #4f46e5;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: #1f2937;
}

.step-content p {
	color: #6b7280;
	line-height: 1.6;
}

.cta-section {
	text-align: center;
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #1f2937;
}

.cta-section p {
	color: #6b7280;
	margin-bottom: 25px;
}

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

.faq-item {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 20px;
}

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

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

.faq-icon {
	font-size: 1.5rem;
	color: #4f46e5;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

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

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

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

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

.contact-info h3,
.contact-form h3 {
	font-size: 1.5rem;
	margin-bottom: 25px;
	color: #1f2937;
}

.contact-item {
	margin-bottom: 20px;
}

.contact-item strong {
	color: #4f46e5;
	display: block;
	margin-bottom: 5px;
}

.contact-form {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

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

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

.mission h1 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 40px;
}

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

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

.mission-stats {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 5px;
}

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

.approach {
	background: #f9fafb;
}

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

.approach-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.approach-card img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.approach-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #1f2937;
}

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

.values-text h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: #1f2937;
}

.values-text p {
	margin-bottom: 30px;
	color: #6b7280;
	line-height: 1.6;
}

.team {
	background: #f9fafb;
}

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

.team-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

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

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

.team-role {
	color: #4f46e5;
	font-weight: 600;
	margin-bottom: 15px;
}

.team-info p {
	color: #6b7280;
	line-height: 1.5;
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background: #1f2937;
	color: white;
	padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 20px;
	color: #4f46e5;
}

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

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

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

.footer-section ul li a:hover {
	color: #4f46e5;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 20px;
	text-align: center;
	color: #9ca3af;
}

/* Legal Pages */
.legal-page {
	padding: 100px 0 60px;
	min-height: 100vh;
}

.legal-page .container {
	max-width: 800px;
}

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

.last-updated {
	color: #6b7280;
	font-style: italic;
	margin-bottom: 30px;
}

.legal-page h2 {
	font-size: 1.5rem;
	color: #1f2937;
	margin: 30px 0 15px 0;
}

.legal-page h3 {
	font-size: 1.3rem;
	color: #374151;
	margin: 25px 0 10px 0;
}

.legal-page p {
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
	margin: 15px 0 15px 30px;
	color: #4b5563;
	line-height: 1.7;
}

.legal-page li {
	margin-bottom: 8px;
}

.legal-page strong {
	color: #1f2937;
	font-weight: 600;
}

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

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

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

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

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

	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

	.mission-stats {
		flex-direction: row;
		justify-content: space-around;
	}

	.step {
		flex-direction: column;
		text-align: center;
	}

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

	.cookie-modal {
		left: 10px;
		right: 10px;
	}

	.legal-page {
		padding: 100px 20px 60px;
	}
}

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

	section {
		padding: 60px 0;
	}

	section h2 {
		font-size: 2rem;
	}

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

	.mission h1 {
		font-size: 2.2rem;
	}

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

	.mission-stats {
		flex-direction: column;
		gap: 20px;
	}
}
