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

body {
	font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	background-color: #f8f9fb;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(248, 249, 251, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(52, 73, 94, 0.1);
}

.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;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #34495e;
	text-decoration: none;
}

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

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

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

.nav-link:hover,
.nav-link.active {
	color: #3498db;
}

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

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

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ecf0f1;
}

.hero-content {
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-content p {
	text-align: center;
	font-size: 1.25rem;
	margin: 0 auto 2rem;
	max-width: 600px;
}

.btn-primary {
	background: #3498db;
	color: #ecf0f1;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

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

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

.btn-secondary:hover {
	background: #34495e;
	color: #ecf0f1;
}

/* Page Hero */
.page-hero {
	padding: 150px 0 100px;
	text-align: center;
	background: #ecf0f1;
}

.page-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.page-hero p {
	font-size: 1.25rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

/* Sections */
.section {
	padding: 100px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

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

.section h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
	color: #2c3e50;
}

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

.text-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #5d6d7e;
}

.text-content p {
	margin-bottom: 1.5rem;
}

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

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

.tool-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(52, 73, 94, 0.1);
	transition: transform 0.3s ease;
	border: 1px solid rgba(52, 73, 94, 0.05);
}

.tool-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(52, 73, 94, 0.15);
}

.tool-card img {
	width: 60px;
	height: auto;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.tool-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.tool-card p {
	color: #7f8c8d;
	margin-bottom: 1.5rem;
}

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

.feature-tag {
	background: #e8f4fd;
	color: #2980b9;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

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

.faq-item {
	border-bottom: 1px solid #d5dbdb;
	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: #3498db;
}

.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: all 0.3s ease;
}

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

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

/* Contact Section */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

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

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

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

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

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

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #34495e;
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 2px solid #d5dbdb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: #ffffff;
}

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.checkbox-label input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	min-width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 2px solid #d5dbdb;
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
	border-color: #3498db;
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark {
	background-color: #3498db;
	border-color: #3498db;
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.form-message {
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	font-weight: 600;
}

.form-message.success {
	background: #d5f4e6;
	color: #27ae60;
	border: 1px solid #a9dfbf;
}

.form-message.error {
	background: #fadbd8;
	color: #e74c3c;
	border: 1px solid #f1948a;
}

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

.cookie-content {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	max-width: 500px;
	margin: 0 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(52, 73, 94, 0.2);
}

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

.cookie-content p {
	margin-bottom: 2rem;
	color: #7f8c8d;
	line-height: 1.6;
}

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

/* Form Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(52, 73, 94, 0.5);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

.form-modal-content {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	max-width: 400px;
	margin: 0 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(52, 73, 94, 0.2);
}

.form-modal-content h3 {
	margin-bottom: 1rem;
	color: #2c3e50;
}

.form-modal-content p {
	margin-bottom: 1.5rem;
	color: #7f8c8d;
	line-height: 1.6;
}

.loading-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #e8f4fd;
	border-radius: 50%;
	border-top-color: #3498db;
	animation: spin 1s ease-in-out infinite;
	margin-bottom: 1rem;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.success-icon {
	color: #27ae60;
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* Footer */
.footer {
	background: #34495e;
	color: #ecf0f1;
	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 ul li a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	border-top: 1px solid #5d6d7e;
	padding-top: 1rem;
	text-align: center;
	color: #bdc3c7;
}

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

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

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

.legal-page h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #34495e;
}

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

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

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

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #f8f9fb;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(52, 73, 94, 0.1);
		padding: 2rem 0;
	}

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

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

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

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

	.section {
		padding: 60px 0;
	}

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

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

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

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

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

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

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

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

	.section {
		padding: 40px 0;
	}

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

	.btn-primary,
	.btn-secondary {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	.legal-page {
		padding: 100px 0 30px;
	}
}

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

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