:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--text-color: #1f2937;
	--text-light: #6b7280;
	--background-white: #ffffff;
	--background-light: #f9fafb;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--error-color: #ef4444;
	--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-white);
}

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

/* Navigation */
.navbar {
	background: var(--background-white);
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

.nav-menu a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	margin: 3px 0;
	transition: 0.3s;
}

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

.hero-secondary {
	padding: 120px 0 60px;
	background: var(--background-light);
	text-align: center;
}

.hero h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

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

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

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

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

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

section h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-color);
}

/* Guide Section */
.guide-section {
	background: var(--background-white);
}

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

.guide-card {
	background: var(--background-white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

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

.guide-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.guide-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Text Section */
.text-section {
	background: var(--background-light);
}

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

.text-content h2 {
	text-align: left;
	margin-bottom: 2rem;
}

.text-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

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

.tool-card {
	background: var(--background-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.tool-image {
	height: 200px;
	overflow: hidden;
}

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

.tool-content {
	padding: 1.5rem;
}

.tool-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.tool-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.tool-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tool-features span {
	background: var(--background-light);
	color: var(--text-color);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Benefits Section */
.benefits-section {
	background: var(--background-light);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.benefit-item {
	text-align: center;
}

.benefit-emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.benefit-item h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.benefit-item p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Getting Started Section */
.getting-started {
	background: var(--background-white);
}

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

.steps-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

/* FAQ Section */
.faq-section {
	background: var(--background-white);
}

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

.faq-item {
	border-bottom: 1px solid var(--border-color);
	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: var(--primary-color);
}

.faq-question h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
}

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

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

.faq-answer p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Contact Section */
.contact-section {
	background: var(--background-light);
}

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

.contact-info h3,
.contact-form h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

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

.contact-item strong {
	color: var(--text-color);
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: var(--text-light);
	margin: 0;
}

/* Contact Form */
.contact-form {
	background: var(--background-white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

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

/* Checkbox Styling */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--text-color);
}

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

.checkmark {
	min-width: 20px;
	height: 20px;
	background-color: var(--background-white);
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	margin-top: 2px;
}

.checkbox-container:hover .checkmark {
	border-color: var(--primary-color);
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

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

.checkbox-container input[type='checkbox']:focus + .checkmark {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--background-white);
	box-shadow: var(--shadow-lg);
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 20px;
}

.cookie-content h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.cookie-content p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.cookie-content a {
	color: var(--primary-color);
	text-decoration: none;
}

.cookie-content a:hover {
	text-decoration: underline;
}

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

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

.btn-accept {
	background: var(--primary-color);
	color: white;
}

.btn-accept:hover {
	background: var(--secondary-color);
}

.btn-decline {
	background: transparent;
	color: var(--text-color);
	border: 2px solid var(--border-color);
}

.btn-decline:hover {
	background: var(--background-light);
}

/* Form 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: 1002;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

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

.form-modal h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.form-modal p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: var(--success-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

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

/* Footer */
.footer {
	background: var(--text-color);
	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 {
	font-family: 'Cal Sans', sans-serif;
	margin-bottom: 1rem;
}

.footer-section h3 {
	color: var(--primary-color);
	font-size: 1.5rem;
}

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

.footer-section ul li {
	margin-bottom: 0.5rem;
}

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

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

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

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

.legal-page h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.legal-page h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: var(--text-color);
}

.legal-page h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 1.5rem 0 0.75rem;
	color: var(--text-color);
}

.legal-page p {
	line-height: 1.7;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.legal-page ul {
	margin: 1rem 0 1rem 2rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.legal-page a {
	color: var(--primary-color);
	text-decoration: none;
}

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

/* Form Messages */
.form-message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-weight: 500;
}

.form-message.success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.form-message.error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--background-white);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: var(--shadow);
		padding: 2rem 0;
	}

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

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

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

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

	.btn-primary,
	.btn-secondary {
		width: 200px;
		text-align: center;
	}

	section h2 {
		font-size: 2rem;
	}

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

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

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

	.cookie-buttons {
		justify-content: center;
	}

	.btn-accept,
	.btn-decline {
		flex: 1;
		min-width: 120px;
	}
}

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

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

	.hero h1 {
		font-size: 1.75rem;
	}

	.guide-card,
	.tool-card,
	.contact-form {
		margin: 0 -5px;
	}

	.cookie-content {
		padding: 1rem 15px;
	}
}
