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

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

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	background: #ffffff;
	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.5rem;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

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

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

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

.nav-menu a:hover {
	color: #28a745;
}

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

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

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('../img/h1.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
	display: inline-block;
	background: #28a745;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.hero-small {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f9fa;
}

.hero-small h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

.section:nth-child(even) {
	background: #f8f9fa;
}

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

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

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

.text-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
	font-weight: 700;
}

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

.image-content img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
	font-weight: 700;
}

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

.tool-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

.tool-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	border-radius: 10px;
}

.tool-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #333;
}

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

.checkbox-group {
	margin-bottom: 25px;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	gap: 10px;
}

.checkbox-container input[type='checkbox'] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	background: white;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container input[type='checkbox']:checked {
	background: #28a745;
	border-color: #28a745;
}

.checkbox-container input[type='checkbox']:checked::after {
	content: '✓';
	position: absolute;
	top: -2px;
	left: 2px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-container input[type='checkbox']:focus {
	outline: 2px solid #28a745;
	outline-offset: 2px;
}

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

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

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

.faq-question:hover {
	color: #28a745;
}

.faq-question h3 {
	font-size: 1.2rem;
	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;
}

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

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

/* Contact Form */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 40px;
}

.contact-info p {
	margin-bottom: 1rem;
	color: #666;
}

.contact-details {
	margin-top: 2rem;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.submit-btn {
	background: #28a745;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

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

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

.btn-accept {
	background: #28a745;
	color: white;
}

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

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

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

/* Form Success Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	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: 40px;
	border-radius: 10px;
	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;
}

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

.form-modal h3 {
	margin-bottom: 20px;
	color: #333;
	font-size: 1.5rem;
}

.form-modal p {
	margin-bottom: 20px;
	color: #666;
}

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

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 20px;
}

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

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

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

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

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

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

.footer-section ul li a:hover {
	color: #28a745;
}

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

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

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

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

.legal-page p,
.legal-page li {
	margin-bottom: 1rem;
	color: #666;
	line-height: 1.7;
}

.legal-page ul {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 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;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 20px 0;
	}

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

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

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

	.section-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.section-content.reverse {
		direction: ltr;
	}

	.text-content h2 {
		font-size: 2rem;
	}

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

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

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

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

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.text-content h2 {
		font-size: 1.8rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.tool-card {
		padding: 20px;
	}

	.contact-form {
		padding: 20px;
	}

	.container {
		padding: 0 15px;
	}
}
