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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	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);
}

.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: 10px;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

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

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

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

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

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

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

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('../img/h1.webp');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
}

.hero-content p {
	font-size: 1.3rem;
	margin: 0 auto 2rem;
	max-width: 600px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease 0.3s forwards;
}

.cta-button {
	display: inline-block;
	text-decoration: none;
	background: #007bff;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease 0.6s forwards;
}

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

/* Section Styles */
section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

.section-content {
	padding-top: 50px;
	text-align: center;
}

.section-content h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #333;
}

.section-content p {
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 2rem;
}

.section-cta {
	display: inline-block;
	text-decoration: none;
	background: #007bff;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 2rem;
}

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

/* About Section */
.about {
	background: #f8f9fa;
}

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

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

.stat-number {
	display: block;
	font-family: 'Cal Sans', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #007bff;
	margin-bottom: 0.5rem;
}

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

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

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

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

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-icon img {
	width: 100%;
	height: auto;
}

.feature-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

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

.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 {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

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

.faq-toggle {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

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

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

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	line-height: 1.6;
}

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

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

.contact-info h3,
.contact-form h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

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

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

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

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

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

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

.form-group-checkbox input {
	width: auto;
	margin-top: 4px;
}

.form-group-checkbox label {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.3;
}

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

.submit-btn {
	background: #007bff;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

/* Practices Page Styles */
.emoji-header {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.practice-item {
	background: white;
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.practice-item h3 {
	text-align: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

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

.practice-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.practice-card h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}

.creative-content {
	text-align: left;
	max-width: 800px;
	margin: 2rem auto 0;
}

.creative-text h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #333;
}

.creative-text h3:first-child {
	margin-top: 0;
}

.work-practices {
	background: #f8f9fa;
}

.personal-practices {
	background: white;
}

.creative-practices {
	background: #f8f9fa;
}

/* 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 {
	font-family: 'Cal Sans', sans-serif;
	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 {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #555;
	color: #ccc;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	background: white;
	padding: 2rem;
	margin: 1rem;
	border-radius: 10px;
	text-align: center;
}

.cookie-content h3 {
	font-family: 'Cal Sans', sans-serif;
	margin-bottom: 1rem;
	color: #333;
}

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

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

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

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

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

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

.cookie-btn.decline:hover {
	background: #545b62;
}

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

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

.submission-content {
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.submission-content p {
	font-size: 1.2rem;
	color: #333;
	margin: 0;
}

.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #007bff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1.5s linear infinite;
}

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

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		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 h1 {
		font-size: 2.5rem;
	}

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

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

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

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

	.cookie-btn {
		width: 200px;
	}
}

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

	section {
		padding: 60px 0;
	}

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

	.feature-card,
	.practice-card,
	.practice-item {
		padding: 1.5rem;
	}

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

/* Legal pages styles */
.legal-page {
	padding: 120px 0 80px;
	min-height: 100vh;
}

.legal-page h1 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.last-updated {
	color: #666;
	font-style: italic;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
}

.legal-page section {
	padding: 0;
	margin-bottom: 2.5rem;
	opacity: 1;
	transform: none;
}

.legal-page h2 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.legal-page h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.3rem;
	color: #333;
	margin: 1.5rem 0 0.5rem;
}

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

.legal-page ul,
.legal-page ol {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

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

.submission-modal .loader.hidden {
	display: none;
}

.submission-modal .success-icon {
	display: none;
	font-size: 60px;
	color: #28a745;
	line-height: 1;
	animation: pop-in 0.4s ease-out;
}

.submission-modal .success-icon.show {
	display: block;
}

@keyframes pop-in {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	80% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
