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

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}

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

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	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 img {
	height: 40px;
	width: auto;
}
.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #2c3e50;
	text-decoration: none;
}

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

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

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

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: all 0.3s ease;
	transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 150px 0 100px;
	text-align: center;
}

.hero-small {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

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

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

.btn-primary,
.btn-secondary {
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: #e74c3c;
	color: white;
}

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

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: #667eea;
}

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

.bg-light {
	background: #f8f9fa;
}

.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 h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #2c3e50;
}

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

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

.feature-list {
	list-style: none;
	margin-top: 2rem;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.feature-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
}

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

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

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: bold;
	color: #3498db;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

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

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

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

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

.innovation-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

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

.innovation-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

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

.values-list {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.value-item h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #2c3e50;
}

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

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

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

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

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.1rem;
	color: #2c3e50;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #3498db;
	font-weight: bold;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.form-group-checkbox input {
	width: auto;
	accent-color: #3498db;
}

.form-group-checkbox label {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0;
}

.form-message {
	padding: 1rem;
	border-radius: 5px;
	margin-top: 1rem;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 50px 0 20px;
}

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

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.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;
}

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

.footer-bottom {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #34495e;
	color: #bdc3c7;
}

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	display: none;
}

.cookie-content {
	background: white;
	padding: 2rem;
	margin: 1rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-accept {
	background: #27ae60;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

.btn-reject {
	background: #e74c3c;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

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

.form-modal-content {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
}

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

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

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	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: #27ae60;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 2rem;
	font-weight: bold;
}

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

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

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

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 0;
		opacity: 0;
		transform: translateY(-10px);
		transition: all 0.3s ease;
	}

	.nav-menu.active {
		display: flex;
		opacity: 1;
		transform: translateY(0);
	}

	.nav-menu .nav-link {
		padding: 1rem 2rem;
		border-bottom: 1px solid #f0f0f0;
		transition: all 0.3s ease;
	}

	.nav-menu .nav-link:hover {
		background: #f8f9fa;
		padding-left: 2.5rem;
	}

	.nav-menu .nav-link:last-child {
		border-bottom: none;
	}

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

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

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

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

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

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

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

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

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

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

	.section-content {
		padding: 50px 0;
	}

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

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