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

body {
	font-family: 'Inter', 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;
	border-bottom: 1px solid #eee;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

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

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

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

.nav-link:hover,
.nav-link.active {
	color: #007bff;
}

.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 {
	padding: 120px 0 80px;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

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

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

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

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

.btn-primary {
	background: #007bff;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

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

.btn-secondary {
	background: transparent;
	color: #007bff;
	padding: 1rem 2rem;
	border: 2px solid #007bff;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: #007bff;
	color: white;
	transform: translateY(-2px);
}

.hero-visual {
	font-size: 8rem;
	text-align: center;
}

.about-hero .hero-visual {
	font-size: 6rem;
}

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

.bg-light {
	background-color: #f8f9fa;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.25rem;
	color: #666;
}

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

.content-grid.reverse {
	direction: rtl;
}

.content-grid.reverse > * {
	direction: ltr;
}

.content-text h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

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

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

.image-placeholder {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	position: relative;
	overflow: hidden;
}

.image-placeholder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="25" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.content-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
}

.tool-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

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

.tool-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tool-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.tool-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.tool-card p {
	color: #666;
	line-height: 1.6;
}

/* Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

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

.stat-label {
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

/* Values */
.value-points {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.value-point {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.value-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.value-point h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.value-point p {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

/* Mission Content */
.mission-content {
	max-width: 800px;
	margin: 0 auto;
}

.mission-content p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

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

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

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

.faq-question:hover {
	color: #007bff;
}

.faq-question h3 {
	font-size: 1.25rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	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, padding 0.3s ease;
}

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

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

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

.contact-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

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

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

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

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

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

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

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

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Checkbox Styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #666;
}

.checkbox-container input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

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

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.checkbox-container:hover .checkmark {
	border-color: #007bff;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 10000;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

.cookie-content p {
	color: #ccc;
	margin-bottom: 2rem;
}

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

.btn-accept {
	background: #28a745;
	color: white;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn-accept:hover {
	background: #218838;
}

.btn-decline {
	background: transparent;
	color: white;
	padding: 0.75rem 2rem;
	border: 2px solid white;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-brand p {
	color: #ccc;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-column a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

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

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

/* Legal Pages */
.legal-page {
	padding-top: 100px;
	padding-bottom: 4rem;
}

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

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

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

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

.legal-content h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #444;
}

.legal-content p {
	margin-bottom: 1rem;
	line-height: 1.8;
	color: #666;
}

.legal-content ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
	color: #666;
	line-height: 1.6;
}

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

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.submission-content {
	background: white;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.submission-modal.show .submission-content {
	transform: scale(1);
}

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

.submission-content p {
	color: #666;
	margin-bottom: 0;
}

/* Loader */
.loader {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

	.hero-visual {
		font-size: 4rem;
	}

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

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

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

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

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

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

	.section-header h2 {
		font-size: 2rem;
	}

	.section-header p {
		font-size: 1.1rem;
	}

	.value-points {
		grid-template-columns: 1fr;
	}
}

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

	.nav-container {
		padding: 1rem 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

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

	.hero-content p {
		font-size: 1.1rem;
	}

	.section {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 3rem;
	}

	.cookie-content {
		padding: 0 1rem;
	}
}
