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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background-color: #0a0a0a;
}

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

/* Header */
header {
	background-color: #1c242f;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
	padding: 1rem 0;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-family: 'Space Mono', monospace;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
}

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

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

.nav-menu a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

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

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

/* Main Content */
main {
	margin-top: 80px;
}

section {
	padding: 4rem 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	text-align: center;
	padding: 6rem 0;
}

.hero-content h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #fff;
}

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

.hero-emoji {
	font-size: 3rem;
	margin-top: 2rem;
}

/* About Section */
.about-section {
	background-color: #0f0f0f;
}

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

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

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

.image-content img {
	width: 100%;
	border-radius: 8px;
}

/* Practices Section */
.practices-section {
	background-color: #111;
}

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

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

.practice-card {
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

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

.practice-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.practice-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #fff;
}

/* FAQ Section */
.faq-section {
	background-color: #0f0f0f;
}

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

.faq-item {
	background-color: #1a1a1a;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

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

.faq-question:hover {
	background-color: #222;
}

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

.faq-icon {
	font-size: 1.5rem;
	color: #fff;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	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: 0 1.5rem 1.5rem;
	max-height: 200px;
}

/* Contact Section */
.contact-section {
	background-color: #111;
}

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

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

.contact-info p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

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

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

.contact-form {
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #333;
	border-radius: 4px;
	background-color: #222;
	color: #e0e0e0;
	font-family: inherit;
}

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

.submit-btn {
	background-color: #333;
	color: #fff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background-color: #444;
}

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

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 0;
	margin-top: 0.2rem;
}

.checkbox-label:hover {
	color: #fff;
}

/* Page 2 Specific Styles */
.advanced-section {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	text-align: center;
	padding: 6rem 0;
}

.advanced-section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #fff;
}

.advanced-section p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.advanced-emoji {
	font-size: 3rem;
	margin-top: 2rem;
}

.workflow-section {
	background-color: #0f0f0f;
}

.strategy-section {
	background-color: #111;
	text-align: center;
}

.strategy-section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #fff;
}

.strategy-section p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

/* Footer */
footer {
	background-color: #000;
	padding: 2rem 0;
	text-align: left;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-nav h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-nav a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
	padding: 0.25rem 0;
}

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

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-links h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-links a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.3s ease;
	padding: 0.25rem 0;
}

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

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-contact h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-contact p {
	color: #e0e0e0;
	margin: 0;
	line-height: 1.4;
}

.footer-copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #333;
}

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

.submission-modal.show {
	display: flex;
}

.submission-content {
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 8px;
	max-width: 300px;
	margin: 2rem;
	text-align: center;
	color: #fff;
}

.submission-content p {
	margin-top: 1rem;
	font-size: 1.1rem;
	margin-bottom: 0;
}

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

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

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

.cookie-modal.show {
	display: flex;
}

.cookie-content {
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 8px;
	max-width: 500px;
	margin: 2rem;
	text-align: center;
}

.cookie-content h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.cookie-content p {
	margin-bottom: 2rem;
}

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

.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
	background-color: #444;
}

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

.cookie-btn.decline:hover {
	background-color: #777;
}

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

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

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

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

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

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

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

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

	.footer-nav,
	.footer-links,
	.footer-contact {
		flex-direction: column;
		gap: 1rem;
	}

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

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

	section {
		padding: 3rem 0;
	}

	.hero-section {
		padding: 4rem 0;
	}

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

	.text-content h2,
	.practices-section h2,
	.faq-section h2,
	.contact-info h2 {
		font-size: 2rem;
	}
}
