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

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

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

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .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: 700;
	color: #000;
	text-decoration: none;
	color: inherit;
}

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

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

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

.nav-list a:hover,
.nav-list a.active {
	color: #007bff;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #333;
	transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

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

/* Hero Section */
.hero {
	margin-top: 80px;
	padding: 4rem 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

.hero-content p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.cta-button:hover {
	background: #333;
	transform: translateY(-2px);
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* About Section */
.about {
	padding: 6rem 0;
	background: #f8f9fa;
}

.about h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #000;
}

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

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

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

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

.about-item img {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	border-radius: 10px;
}

.about-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}

.about-item p {
	color: #666;
	line-height: 1.7;
}

/* Services Section */
.services {
	padding: 6rem 0;
}

.services h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #000;
}

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

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.service-card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.service-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
	border-radius: 5px;
}

.service-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #000;
}

.service-card p {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.6;
}

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

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

/* FAQ Section */
.faq {
	padding: 6rem 0;
	background: #f8f9fa;
}

.faq h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #000;
}

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

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

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

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

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

.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: max-height 0.3s ease, padding 0.3s ease;
}

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

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

/* Contact Section */
.contact {
	padding: 6rem 0;
}

.contact h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #000;
}

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

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #000;
}

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

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

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

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

.contact-form h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #000;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #000;
	font-weight: 500;
}

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

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.checkbox-label .checkmark {
	flex-shrink: 0;
	margin-top: 2px;
}

.submit-btn {
	background: #000;
	color: #fff;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

/* Features Page Styles */
.features-hero {
	margin-top: 80px;
	padding: 4rem 0;
	text-align: center;
	background: #f8f9fa;
}

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

.features-hero p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.features-section {
	padding: 6rem 0;
}

.features-section.alternate {
	background: #f8f9fa;
}

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

.feature-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #000;
}

.feature-text p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.feature-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

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

.comm-feature {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.comm-feature img {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	border-radius: 10px;
}

.comm-feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}

.comm-feature p {
	color: #666;
	line-height: 1.7;
}

/* Legal Pages */
.legal-page {
	margin-top: 80px;
	padding: 4rem 0;
}

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

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

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

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

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

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

/* Footer */
.footer {
	background: #000;
	color: #fff;
	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 p {
	color: #ccc;
	line-height: 1.6;
}

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

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

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

.footer-section a:hover {
	color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	color: #fff;
	padding: 1rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

.cookie-btn.decline {
	background: #6c757d;
	color: #fff;
}

.cookie-btn:hover {
	transform: translateY(-2px);
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1002;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	min-width: 300px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

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

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

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 1rem;
	display: none;
}

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

	.nav-list {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
	}

	.nav-list.show {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-list li {
		margin: 0.5rem 0;
	}

	.nav-list a {
		display: block;
		padding: 0.5rem;
		text-align: center;
		border-radius: 5px;
		transition: background-color 0.3s ease;
	}

	.nav-list a:hover {
		background-color: rgba(0, 123, 255, 0.1);
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.about-grid,
	.service-cards,
	.communication-grid {
		grid-template-columns: 1fr;
	}

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

	.contact-content,
	.feature-content {
		grid-template-columns: 1fr;
	}

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

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

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

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

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

	.about h2,
	.services h2,
	.faq h2,
	.contact h2 {
		font-size: 2rem;
	}

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

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