	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	:root {
	--primary-color: #a88584;
	--secondary-color: #baa6a5;
	--tertiary-color: #d8d2d1;
	--text-dark: #2c2c2c;
	--text-light: #555555;
	--background-light: #fefefe;
	--border-light: #e8e8e8;
	--shadow-soft: 0 2px 8px rgba(168, 133, 132, 0.1);
	}
	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--background-light);
	}
	.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	}
	header {
	background-color: var(--background-light);
	border-bottom: 1px solid var(--border-light);
	box-shadow: var(--shadow-soft);
	position: relative;
	}
	.header-content {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2rem;
	min-height: 80px;
	padding: 1rem 0;
	}
	.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	z-index: 10;
	}
	.logo-container img {
	height: 45px;
	width: auto;
	display: block;
	}
	.brand-info h1 {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.2rem;
	}
	.brand-info p {
	font-size: clamp(0.8rem, 1.5vw, 0.9rem);
	color: var(--text-light);
	font-weight: 400;
	}
	.main-navigation {
	justify-self: end;
	position: relative;
	z-index: 5;
	}
	.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	}
	.nav-list li {
	position: relative;
	}
	.nav-list a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	padding: 0.5rem 0;
	transition: color 0.2s ease;
	display: block;
	min-height: 44px;
	line-height: 1.4;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.nav-list a:hover {
	color: var(--primary-color);
	}
	.nav-list a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	footer {
	background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
	color: var(--text-dark);
	padding: 3rem 0 1.5rem;
	margin-top: auto;
	}
	.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2rem;
	}
	.footer-section h3 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	}
	.contact-info {
	line-height: 1.8;
	}
	.contact-info p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	}
	.contact-info strong {
	color: var(--primary-color);
	min-width: 4rem;
	font-weight: 500;
	}
	.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	}
	.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
	min-height: 44px;
	display: flex;
	align-items: center;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.footer-links a:hover {
	color: var(--primary-color);
	}
	.footer-links a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(168, 133, 132, 0.2);
	color: var(--text-light);
	font-size: 0.9rem;
	}
	.cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--background-light);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 8px 32px rgba(168, 133, 132, 0.2);
	z-index: 1000;
	max-width: 600px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	}
	.cookie-consent.show {
	transform: translateY(0);
	opacity: 1;
	}
	.cookie-content h4 {
	color: var(--primary-color);
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	font-weight: 600;
	}
	.cookie-content p {
	color: var(--text-dark);
	margin-bottom: 1.2rem;
	line-height: 1.5;
	font-size: 0.95rem;
	}
	.cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	}
	.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.9rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-accept {
	background: var(--primary-color);
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	}
	.cookie-accept:hover {
	background: #9a7a79;
	}
	.cookie-accept:focus {
	outline-color: var(--text-dark);
	}
	.cookie-reject {
	background: var(--tertiary-color);
	color: var(--text-dark);
	border: 1px solid var(--secondary-color);
	}
	.cookie-reject:hover {
	background: var(--secondary-color);
	}
	.cookie-reject:focus {
	outline-color: var(--primary-color);
	}
	.cookie-learn {
	color: var(--primary-color);
	text-decoration: underline;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.5rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-learn:hover {
	color: #9a7a79;
	}
	.cookie-learn:focus {
	outline-color: var(--primary-color);
	}
	@media (max-width: 768px) {
	.header-content {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: center;
	}
	.main-navigation {
	justify-self: center;
	}
	.nav-list {
	justify-content: center;
	gap: 1.5rem;
	}
	.footer-content {
	grid-template-columns: 1fr;
	text-align: center;
	}
	.cookie-consent {
	position: fixed;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translate(-50%, -50%);
	max-width: 85%;
	width: 85%;
	padding: 2rem;
	}
	.cookie-consent.show {
	transform: translate(-50%, -50%);
	}
	.cookie-content h4 {
	font-size: 1.2rem;
	}
	.cookie-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	}
	.cookie-actions {
	flex-direction: column;
	gap: 1.2rem;
	}
	.cookie-btn {
	width: 100%;
	padding: 1.2rem;
	font-size: 1.1rem;
	min-height: 50px;
	}
	.cookie-learn {
	font-size: 1rem;
	padding: 1rem;
	min-height: 50px;
	}
	}
	@media (max-width: 480px) {
	.nav-list {
	gap: 1rem;
	}
	.nav-list a {
	font-size: 0.9rem;
	}
	.container {
	padding: 0 15px;
	}
	}
	.meditation-hero {
	background: linear-gradient(135deg, #d8d2d1 0%, #baa6a5 50%, #a88584 100%);
	min-height: 90vh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	}
	.meditation-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
	opacity: 0.3;
	z-index: 1;
	}
	.hero-content-wrapper {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.journey-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
	}
	.step-card {
	background: rgba(255, 255, 255, 0.9);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	position: relative;
	transform: translateY(20px);
	opacity: 0;
	animation: stepReveal 0.8s ease forwards;
	box-shadow: 0 10px 30px rgba(168, 133, 132, 0.2);
	}
	.step-card:nth-child(1) { animation-delay: 0.3s; }
	.step-card:nth-child(2) { animation-delay: 0.6s; }
	.step-card:nth-child(3) { animation-delay: 0.9s; }
	.step-number {
	width: 60px;
	height: 60px;
	background: #a88584;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 20px auto;
	}
	.main-hero-title {
	font-size: 3.5rem;
	color: white;
	text-align: center;
	margin-bottom: 30px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	}
	.hero-subtitle {
	font-size: 1.3rem;
	color: white;
	text-align: center;
	margin-bottom: 50px;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	}
	@keyframes stepReveal {
	to {
	opacity: 1;
	transform: translateY(0);
	}
	}
	.philosophy-section {
	padding: 100px 0;
	background: #f8f7f6;
	position: relative;
	}
	.philosophy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	}
	.philosophy-content {
	position: relative;
	}
	.philosophy-title {
	font-size: 2.8rem;
	color: #a88584;
	margin-bottom: 30px;
	line-height: 1.2;
	}
	.philosophy-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 25px;
	}
	.philosophy-visual {
	position: relative;
	min-height: 500px;
	border-radius: 20px;
	overflow: hidden;
	}
	.philosophy-visual::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(168, 133, 132, 0.15);
	}
	.practice-tracker {
	padding: 120px 0;
	background: linear-gradient(45deg, #baa6a5, #d8d2d1);
	position: relative;
	overflow: hidden;
	}
	.tracker-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.tracker-header {
	text-align: center;
	margin-bottom: 80px;
	}
	.tracker-title {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 20px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
	}
	.tracker-subtitle {
	font-size: 1.2rem;
	color: white;
	opacity: 0.9;
	}
	.progress-visualization {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
	}
	.progress-item {
	background: white;
	padding: 40px 25px;
	border-radius: 12px;
	text-align: center;
	position: relative;
	transition: transform 0.3s ease;
	}
	.progress-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	}
	.progress-icon {
	width: 80px;
	height: 80px;
	background: #a88584;
	border-radius: 50%;
	margin: 0 auto 25px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	}
	.progress-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	}
	.community-connection {
	padding: 100px 0;
	background: white;
	position: relative;
	}
	.community-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.community-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 60px;
	align-items: start;
	}
	.community-content {
	position: relative;
	}
	.community-title {
	font-size: 2.6rem;
	color: #a88584;
	margin-bottom: 40px;
	line-height: 1.3;
	}
	.community-features {
	margin-top: 50px;
	}
	.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
	padding: 20px;
	background: #f9f8f7;
	border-radius: 10px;
	transition: background 0.3s ease;
	}
	.feature-item:hover {
	background: #f1efed;
	}
	.feature-icon {
	width: 50px;
	height: 50px;
	background: #baa6a5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 20px;
	flex-shrink: 0;
	}
	.feature-text {
	flex: 1;
	}
	.feature-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	}
	.feature-description {
	color: #666;
	line-height: 1.6;
	}
	.community-sidebar {
	min-height: 600px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	}
	.community-sidebar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(168, 133, 132, 0.4);
	}
	.sidebar-content {
	position: absolute;
	bottom: 40px;
	left: 30px;
	right: 30px;
	z-index: 2;
	color: white;
	}
	.testimonial-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 12px;
	color: #333;
	margin-bottom: 20px;
	}
	.testimonial-text {
	font-style: italic;
	margin-bottom: 15px;
	line-height: 1.6;
	}
	.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
	}
	.author-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: url('./gallery/JwAZtMD90.jpg') center/cover;
	}
	.author-info {
	flex: 1;
	}
	.author-name {
	font-weight: 600;
	margin-bottom: 3px;
	}
	.author-title {
	font-size: 0.9rem;
	color: #666;
	}
	.cta-section {
	background: #a88584;
	padding: 80px 0;
	text-align: center;
	}
	.cta-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.cta-title {
	font-size: 2.2rem;
	color: white;
	margin-bottom: 20px;
	}
	.cta-text {
	font-size: 1.1rem;
	color: white;
	opacity: 0.9;
	margin-bottom: 40px;
	line-height: 1.6;
	}
	.cta-button {
	display: inline-block;
	background: white;
	color: #a88584;
	padding: 18px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 10;
	cursor: pointer;
	}
	.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	background: #f8f8f8;
	}
	@media (max-width: 768px) {
	.main-hero-title {
	font-size: 2.5rem;
	}
	.journey-steps {
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 40px;
	}
	.philosophy-container {
	grid-template-columns: 1fr;
	gap: 50px;
	text-align: center;
	}
	.philosophy-title {
	font-size: 2.2rem;
	}
	.progress-visualization {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	}
	.community-layout {
	grid-template-columns: 1fr;
	gap: 40px;
	}
	.community-title {
	font-size: 2rem;
	}
	.tracker-title {
	font-size: 2rem;
	}
	.hero-content-wrapper,
	.philosophy-container,
	.tracker-container,
	.community-container,
	.cta-container {
	padding: 0 20px;
	}
	}