/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Cal Sans', 'Segoe UI', Tahoma, Geneva, Verdana, 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: #fff;

	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

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

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

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

.nav-menu a:hover {
	color: #007bff;
}

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

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

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

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

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 500px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

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

.btn-accept,
.btn-decline {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #007bff;
	color: white;
}

.btn-accept:hover {
	background: #0056b3;
}

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

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

/* 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 top;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

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

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

.cta-btn {
	display: inline-block;
	padding: 1rem 2rem;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
	padding: 120px 0 80px;
	background: #f8f9fa;
	text-align: center;
}

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

.page-hero p {
	font-size: 1.2rem;
	color: #666;
}

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

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

.section-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	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;
}

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

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

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

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

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

.card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.card h3 {
	margin-bottom: 1rem;
	color: #333;
}

.card p {
	color: #666;
}

/* Contact Section */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

.contact-form h3 {
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.checkbox-group input[type='checkbox'] {
	width: auto;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.checkbox-group label {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
	cursor: pointer;
}

.submit-btn {
	width: 100%;
	padding: 1rem;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #0056b3;
}

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

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
}

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

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

.faq-question h3 {
	margin: 0;
	color: #333;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #007bff;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

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

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

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

/* Footer */
.footer {
	background: #333;
	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 {
	margin-bottom: 1rem;
}

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

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

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

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

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

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	max-width: 800px;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

.success-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
}

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

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

.success-modal h3 {
	margin-bottom: 1rem;
	color: #333;
}

.success-modal p {
	margin-bottom: 0;
	color: #666;
	line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

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

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

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

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

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

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

	.container {
		padding: 0 15px;
	}
}
