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

body {
	font-family: 'Cal Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

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

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

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

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

.nav-menu a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	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: #333;
	margin: 3px 0;
	transition: 0.3s;
}

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

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

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

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #545b62;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #212529;
}

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

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

/* About Hero */
.about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

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

/* Features Section */
.features {
	padding: 80px 0;
	background: #fff;
}

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

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

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: #f8f9fa;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.feature-card p {
	color: #6c757d;
}

/* Text Section */
.text-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.text-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

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

.text-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #6c757d;
}

/* Mission Section */
.mission {
	padding: 80px 0;
	background: #fff;
}

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

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

.mission-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #6c757d;
}

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

/* Team Section */
.team {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

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

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

.team-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #212529;
}

.team-card p:first-of-type {
	color: #007bff;
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-card p:last-of-type {
	color: #6c757d;
	font-size: 0.9rem;
}

/* Values Section */
.values {
	padding: 80px 0;
	background: #fff;
}

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

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

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

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

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

.value-item p {
	color: #6c757d;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #fff;
}

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

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

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #212529;
}

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

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

.contact-item p {
	color: #6c757d;
}

.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
}

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

/* Footer */
.footer {
	background: #212529;
	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 ul li {
	margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #6c757d;
	font-size: 0.9rem;
}

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

.cookie-buttons .btn {
	flex: 1;
	text-align: center;
}

/* Submission Modal */
#submissionModal .modal-content {
	text-align: center;
	padding: 3rem;
	max-width: 400px;
}

.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #007bff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.success-icon {
	font-size: 4rem;
	color: #28a745;
	margin-bottom: 1rem;
	line-height: 1;
}

#submissionModalContent p {
	font-size: 1.2rem;
	color: #333;
}

/* FAQ Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 2rem;
	border-radius: 12px;
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #000;
}

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

.faq-item h3 {
	color: #212529;
	margin-bottom: 1rem;
}

.faq-item p {
	color: #6c757d;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	min-height: calc(100vh - 200px);
}

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

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

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

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

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

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

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

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

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

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

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	display: none;
}

/* Checkbox styling */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.4;
}

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

.checkbox-label:hover {
	color: #495057;
}

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

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
	}

	.hero .container,
	.about-hero .container,
	.mission-content,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.modal-content {
		width: 95%;
		margin: 10% auto;
		padding: 1.5rem;
	}
}

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

	.hero,
	.about-hero,
	.features,
	.text-section,
	.mission,
	.team,
	.values,
	.contact {
		padding: 60px 0;
	}

	.hero {
		padding-top: 100px;
	}

	.about-hero {
		padding-top: 100px;
	}

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

	.features h2,
	.text-content h2,
	.mission h2,
	.team h2,
	.values h2,
	.contact h2 {
		font-size: 2rem;
	}
}
