* {
	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;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
}

.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;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

.nav-logo 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: #333;
}

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

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

.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

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

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

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

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

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

.btn.primary {
	background: #333;
	color: white;
}

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

.btn.secondary {
	background: transparent;
	color: #333;
	border: 2px solid #333;
}

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

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

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

/* About Section */
.about {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #222;
}

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

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

.about-item {
	text-align: center;
	padding: 2rem;
	border-radius: 8px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

.about-item:hover {
	transform: translateY(-5px);
}

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

.about-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.about-item p {
	color: #666;
}

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

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

.features-text h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #222;
}

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

.features-list {
	list-style: none;
	margin-bottom: 2rem;
}

.features-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: #666;
}

.features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
}

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

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

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

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #222;
}

.contact-info p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

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

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

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

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

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

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

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 400 !important;
	font-size: 0.9rem;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 0;
	accent-color: #333;
}

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

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 500;
	color: #333;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #666;
	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: 200px;
}

.faq-answer p {
	padding: 1.5rem;
	color: #666;
	margin: 0;
}

/* Guide Page Styles */
.guide-hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guide-hero-content h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #222;
}

.guide-hero-content p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.tools-grid {
	padding: 80px 0;
}

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

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

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

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

.tool-content {
	padding: 1.5rem;
}

.tool-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.tool-content p {
	color: #666;
	margin-bottom: 1rem;
}

.tool-content ul {
	list-style: none;
}

.tool-content li {
	padding: 0.25rem 0;
	padding-left: 1rem;
	position: relative;
	color: #666;
	font-size: 0.9rem;
}

.tool-content li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #333;
}

.getting-started {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.getting-started-text h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #222;
}

.getting-started-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
}

.step-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.step-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.step-number {
	background: #333;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

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

.getting-started-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.visual-emoji {
	font-size: 8rem;
	opacity: 0.8;
}

.success-stories {
	padding: 80px 0;
}

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

.story-item {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
	border-left: 4px solid #333;
}

.story-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.story-item p {
	color: #666;
	font-style: italic;
	margin: 0;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.cookie-modal.hidden {
	display: none;
}

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	max-width: 500px;
	margin: 20px;
	text-align: center;
}

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

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

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

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.cookie-btn.accept {
	background: #333;
	color: white;
}

.cookie-btn.accept:hover {
	background: #555;
}

.cookie-btn.decline {
	background: #f8f9fa;
	color: #333;
	border: 1px solid #ddd;
}

.cookie-btn.decline:hover {
	background: #e9ecef;
}

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

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

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	max-width: 400px;
	margin: 20px;
	text-align: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.form-modal p {
	color: #666;
	margin-bottom: 1.5rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 2rem;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 40px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 2rem;
}

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

.footer-info p {
	color: #ccc;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

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

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

.footer-bottom p {
	color: #ccc;
	font-size: 0.9rem;
	margin: 0;
}

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

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

.legal-content h1 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #222;
}

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

.legal-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: #333;
}

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

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

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

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
		gap: 1rem;
	}

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

	.nav-link {
		padding: 0.5rem 0;
		font-size: 1.1rem;
	}

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

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

	.features-content,
	.contact-content,
	.getting-started-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section-header h2,
	.getting-started-text h2 {
		font-size: 2rem;
	}

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

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

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

	.footer-links {
		justify-content: center;
	}

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

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

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

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

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

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

	.about-item {
		padding: 1.5rem;
	}

	.cookie-content {
		margin: 10px;
		padding: 1.5rem;
	}
}
