
    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* COLOR STRATEGY: DARK THEME - D5 DARK EMERALD */
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e4a;
  --color-bg-tertiary: #0f766e;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  
  /* Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #6ee7b7;
  
  /* Accent colors */
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  
  /* Typography */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  font-weight: 600;
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
}

/* Links */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Sections base */
section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

/* Button styles */
.btn {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #000000;
}

.btn-secondary:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* Responsive breakpoints */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Form elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: var(--radius-md);
  border: 2px solid rgba(16, 185, 129, 0.3);
  padding: clamp(0.5rem, 2vw, 0.875rem);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* List styles */
ul, ol {
  list-style-position: inside;
}

li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.pt-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }

.pb-1 { padding-bottom: var(--space-sm); }
.pb-2 { padding-bottom: var(--space-md); }
.pb-3 { padding-bottom: var(--space-lg); }

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

/* Grid utilities */
.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Flex utilities */
.flex {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

/* Card styles */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg-card);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Decorative elements */
.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

.decoration-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

/* Selection styling */
::selection {
  background: var(--color-primary);
  color: #000000;
}

::-moz-selection {
  background: var(--color-primary);
  color: #000000;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body {
    background: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

.header-serenity-nav {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  z-index: 100;
  width: 100%;
}

.header-serenity-nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.header-serenity-nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-serenity-nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0;
  flex-shrink: 0;
}

.header-serenity-nav-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.header-serenity-nav-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  margin-left: 3rem;
  margin-right: 2rem;
  justify-content: flex-end;
}

.header-serenity-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.header-serenity-nav-link:hover {
  color: var(--color-primary);
}

.header-serenity-nav-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-serenity-nav-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.header-serenity-nav-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-serenity-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-serenity-nav-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-serenity-nav-mobile-toggle.active .header-serenity-nav-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-serenity-nav-mobile-toggle.active .header-serenity-nav-hamburger:nth-child(2) {
  opacity: 0;
}

.header-serenity-nav-mobile-toggle.active .header-serenity-nav-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-serenity-nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  width: 100%;
}

.header-serenity-nav-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-serenity-nav-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  z-index: 101;
}

.header-serenity-nav-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-serenity-nav-mobile-close:hover {
  color: var(--color-primary);
}

.header-serenity-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 1.5rem 1rem;
}

.header-serenity-nav-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  transition: color 300ms ease;
  display: block;
}

.header-serenity-nav-mobile-link:hover {
  color: var(--color-primary);
}

.header-serenity-nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  margin: 2rem 1.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-align: center;
}

.header-serenity-nav-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

@media (min-width: 768px) {
  .header-serenity-nav-desktop-nav {
    display: flex;
  }

  .header-serenity-nav-mobile-toggle {
    display: none;
  }

  .header-serenity-nav-mobile-menu {
    display: none;
  }

  .header-serenity-nav-container {
    padding: clamp(1rem, 2vw, 1.75rem) clamp(1.5rem, 4vw, 2.5rem);
  }

  .header-serenity-nav-logo-text {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .header-serenity-nav-container {
    padding: 1.25rem clamp(2rem, 5vw, 3rem);
  }

  .header-serenity-nav-logo-text {
    font-size: 1.5rem;
  }

  .header-serenity-nav-link {
    font-size: 1rem;
  }

  .header-serenity-nav-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

    .zen-interior-sanctuary {
  width: 100%;
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  overflow: hidden;
}

.hero-ambient-glow-index {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(52, 211, 153, 0.1) 0%, transparent 65%);
  top: 50%;
  right: -100px;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-leaf-1-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
  animation: float-gentle 6s ease-in-out infinite;
}

.hero-floating-leaf-2-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%;
  top: 20%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
  animation: float-gentle 8s ease-in-out infinite reverse;
}

.hero-corner-accent-index {
  position: absolute;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  bottom: 20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.hero-soft-orb-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.08) 0%, transparent 75%);
  bottom: -80px;
  right: 20%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element-index {
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  top: 30%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-dot-index {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(16, 185, 129, 0.5);
  border-radius: 50%;
  top: 25%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-index {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle-index {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #a7f3d0;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6ee7b7;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 3rem 0 3rem 0;
}

.hero-stat-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  display: block;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-weight: 500;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.btn {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: #10b981;
  color: #000000;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-secondary {
  background: transparent;
  color: #a7f3d0;
  border-color: #10b981;
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
  color: #34d399;
  transform: translateY(-3px);
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }
}

/* ===== PRINCIPLES SECTION ===== */
.principles-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.principles-shape-1-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  top: 10%;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}

.principles-shape-2-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 5%;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.principles-glow-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-line-index {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  top: 25%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.principles-corner-element-index {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.principles-float-panel-index {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  top: 20%;
  right: 5%;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.principles-content-index {
  position: relative;
  z-index: 10;
}

.principles-header-index {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.principles-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 300ms ease;
}

.principles-step-index:hover {
  transform: translateX(8px);
  background: #f1f5f9;
}

.principles-step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.principles-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
}

.principles-step-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .principles-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.features-mesh-1-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
  top: -100px;
  left: 10%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-mesh-2-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: 5%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-accent-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 75%);
  top: 50%;
  right: 10%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-line-top-index {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  top: 15%;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

.features-shape-right-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.features-content-index {
  position: relative;
  z-index: 10;
}

.features-header-index {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.features-cards-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.features-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .features-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ===== FEATURED POSTS SECTION ===== */
.featured-posts-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  overflow: hidden;
}

.posts-glow-1-index {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%;
  bottom: -50px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.posts-accent-index {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  top: 20%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
}

.posts-line-index {
  position: absolute;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.3), transparent);
  bottom: 30%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.posts-content-index {
  position: relative;
  z-index: 10;
}

.posts-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.posts-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.posts-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
  transition: all 350ms ease;
}

.posts-card-index:hover {
  transform: translateY(-6px);
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.posts-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.posts-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.posts-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.posts-card-text-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.posts-card-link-index {
  font-size: 0.875rem;
  color: #34d399;
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.posts-card-link-index:hover {
  color: #a7f3d0;
  transform: translateX(4px);
}

.posts-cta-index {
  text-align: center;
}

.posts-view-all-index {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: #10b981;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 350ms ease;
}

.posts-view-all-index:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
  .posts-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.about-mesh-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.09) 0%, transparent 65%);
  bottom: -100px;
  left: -50px;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: 20%;
  right: -80px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-1-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-2-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 15%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.about-accent-index {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  top: 30%;
  right: 12%;
  z-index: 1;
  pointer-events: none;
}

.about-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.about-description-index {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-description-index:last-of-type {
  margin-bottom: 0;
}

.about-image-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .about-content-index {
    flex-direction: column;
  }
  
  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }
}

/* ===== QUOTE SECTION ===== */
.quote-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.quote-glow-1-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  top: -100px;
  left: 10%;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-glow-2-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  bottom: -80px;
  right: 10%;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-index {
  position: absolute;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.quote-content-index {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-block-index {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 5px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-text-index {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #022c22;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-index {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

/* ===== VALUES SECTION ===== */
.values-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  overflow: hidden;
}

.values-shape-1-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  top: 15%;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.values-shape-2-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.values-mesh-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.07) 0%, transparent 75%);
  bottom: 20%;
  left: 10%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.values-line-index {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  top: 25%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.values-content-index {
  position: relative;
  z-index: 10;
}

.values-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.values-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.values-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.values-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.values-item-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.values-item-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 0.75rem;
}

.values-item-text-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.cta-gradient-index {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
  top: -150px;
  left: -100px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-1-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 75%);
  top: 20%;
  right: 5%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.cta-accent-index {
  position: absolute;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.cta-description-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-index {
  display: inline-block;
  padding: 1rem 3rem;
  background: #10b981;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 350ms ease;
  font-size: 1rem;
}

.cta-button-index:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  overflow: hidden;
}

.contact-mesh-1-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.09) 0%, transparent 65%);
  top: -100px;
  left: 5%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-mesh-2-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(52, 211, 153, 0.08) 0%, transparent 65%);
  bottom: -80px;
  right: 10%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-index {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 153, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  top: 15%;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

.contact-line-index {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  bottom: 25%;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

.contact-content-index {
  position: relative;
  z-index: 10;
}

.contact-header-index {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-form-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a7f3d0;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-textarea-index {
  min-height: 140px;
  resize: vertical;
}

.contact-submit-index {
  padding: 1rem 2.5rem;
  background: #10b981;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 350ms ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.contact-submit-index:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-faq-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-faq-title-index {
  font-size: 1.25rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 0.5rem;
}

.contact-faq-item-index {
  padding: 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.contact-faq-question-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.contact-privacy-link-index {
  color: #34d399;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

.contact-privacy-link-index:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner-index.hidden {
  display: none;
}

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  flex: 1 1 auto;
  min-width: 250px;
  text-align: center;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 300ms ease;
}

.cookie-btn-accept-index {
  background: #10b981;
  color: #000000;
}

.cookie-btn-accept-index:hover {
  background: #059669;
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: #cbd5e1;
  color: #e2e8f0;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 768px) {
  .hero-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .principles-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .features-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .featured-posts-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .about-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .quote-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .values-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .cta-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .contact-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .principles-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .features-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .featured-posts-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .about-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .quote-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .values-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .cta-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .contact-section-index {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

.footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
  margin: 0;
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 600px;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-nav-column,
.footer-contact-column {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
  color: var(--color-text-primary);
}

.footer-nav-link:hover::after {
  width: 100%;
}

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-secondary);
  display: block;
}

.footer-contact-value {
  color: var(--color-text-muted);
  display: block;
  word-break: break-word;
}

.footer-legal {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-legal-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--color-text-primary);
}

.footer-legal-link:hover::before {
  width: 100%;
}

.footer-divider {
  height: 1px;
  background: rgba(16, 185, 129, 0.1);
  width: 100%;
}

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-nav-column,
  .footer-contact-column {
    flex: 1 1 100%;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-link {
    display: block;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .footer-nav-links,
  .footer-contact-info {
    gap: 0.75rem;
  }

  .footer-contact-item {
    font-size: 0.875rem;
  }
}

/* Focus states for accessibility */
.footer a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }

  .footer-nav-link::after,
  .footer-legal-link::before {
    transition: none;
  }
}
    

/* Category Page Styles */
.category-page-mindful-interior-design {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.hero-section-mindful-interior-design {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  width: 100%;
}

.hero-ambient-glow-mindful {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-mindful {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  bottom: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-mindful {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element-mindful {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  bottom: 20%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-mindful-interior-design {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-mindful-interior-design {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-mindful-interior-design {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description-mindful-interior-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-stats-mindful-interior-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: 3rem;
}

.stat-item-mindful {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-mindful {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-mindful {
  font-size: 0.875rem;
  color: #6ee7b7;
  font-weight: 500;
}

/* ========== POSTS SECTION ========== */
.posts-section-mindful-interior-design {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.posts-header-mindful-interior-design {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.posts-tag-mindful {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-mindful-interior-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-mindful-interior-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-mindful-interior-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.card-mindful-interior-design {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-lg);
  flex: 1 1 320px;
  max-width: 420px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.card-mindful-interior-design:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-image-mindful {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.card-title-mindful-interior-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.card-description-mindful-interior-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-mindful-interior-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-mindful {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.8125rem;
}

.meta-badge-mindful i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-mindful {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-link-mindful:hover {
  background: var(--color-primary-hover);
  transform: translateX(4px);
}

.card-link-mindful:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ========== LEARNING PATH SECTION ========== */
.learning-path-section-mindful-interior-design {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.path-glow-accent-mindful {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  top: 20%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.path-floating-shape-mindful {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -50px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.learning-path-header-mindful-interior-design {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.path-tag-mindful {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.path-title-mindful-interior-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.steps-container-mindful-interior-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.step-item-mindful-interior-design {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.06);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.step-item-mindful-interior-design:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateX(8px);
}

.step-number-mindful {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  min-width: 60px;
  line-height: 1;
}

.step-content-mindful-interior-design {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-mindful {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-mindful {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-mindful-interior-design {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-number-mindful {
    font-size: 2rem;
  }
}

/* ========== PRINCIPLES SECTION ========== */
.principles-section-mindful-interior-design {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.principles-bg-shape-mindful {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.principles-accent-mindful {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.principles-header-mindful-interior-design {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.principles-title-mindful-interior-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.principles-subtitle-mindful-interior-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.featured-quote-mindful-interior-design {
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(16, 185, 129, 0.08);
  margin: 2.5rem 0;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 10;
}

.quote-text-mindful {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-author-mindful {
  font-size: 0.875rem;
  color: #6ee7b7;
  font-style: normal;
  display: block;
}

.principles-grid-mindful-interior-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-top: 3rem;
}

.principle-card-mindful-interior-design {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-lg);
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.principle-card-mindful-interior-design:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.principle-number-mindful {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.principle-name-mindful {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.principle-description-mindful {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-section-mindful-interior-design {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-section-mindful-interior-design {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .learning-path-section-mindful-interior-design {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .principles-section-mindful-interior-design {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .step-item-mindful-interior-design {
    flex-direction: row;
    gap: 2.5rem;
  }

  .step-number-mindful {
    font-size: 3rem;
    min-width: 80px;
  }
}

@media (min-width: 1024px) {
  .posts-grid-mindful-interior-design {
    gap: 2rem;
  }

  .card-mindful-interior-design {
    flex: 1 1 340px;
    max-width: 450px;
  }

  .principles-grid-mindful-interior-design {
    gap: 2rem;
  }

  .principle-card-mindful-interior-design {
    flex: 1 1 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Post Page 1 Styles */
.main-calm-color-palette-selection {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-calm-color-palette-selection {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-calm-color-palette-selection {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-calm-color-palette-selection {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-calm-color-palette-selection {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-calm-color-palette-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-calm-color-palette-selection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.meta-badge-calm-color-palette-selection i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.hero-stats-calm-color-palette-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  padding-top: clamp(1rem, 2vw, 2rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-calm-color-palette-selection {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-calm-color-palette-selection {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-calm-color-palette-selection {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-image-calm-color-palette-selection {
  flex: 1 1 45%;
  min-height: 400px;
}

.hero-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-calm-color-palette-selection {
    flex-direction: column;
  }

  .hero-text-calm-color-palette-selection,
  .hero-image-calm-color-palette-selection {
    flex: 1 1 100%;
  }

  .hero-image-calm-color-palette-selection {
    min-height: 300px;
  }

  .hero-stats-calm-color-palette-selection {
    gap: 1rem;
  }
}

.introduction-section-calm-color-palette-selection {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-content-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-calm-color-palette-selection {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-calm-color-palette-selection {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #334155;
  font-weight: 400;
}

.intro-image-calm-color-palette-selection {
  flex: 1 1 50%;
  min-height: 350px;
}

.intro-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-calm-color-palette-selection {
    flex-direction: column;
  }

  .intro-text-calm-color-palette-selection,
  .intro-image-calm-color-palette-selection {
    flex: 1 1 100%;
  }

  .intro-image-calm-color-palette-selection {
    min-height: 280px;
  }
}

.foundations-section-calm-color-palette-selection {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundations-header-calm-color-palette-selection {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-calm-color-palette-selection {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.foundations-title-calm-color-palette-selection {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.foundations-subtitle-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps-calm-color-palette-selection {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.foundations-step-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.foundations-step-number-calm-color-palette-selection {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.foundations-step-content-calm-color-palette-selection {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.foundations-step-title-calm-color-palette-selection {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.foundations-step-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .foundations-step-calm-color-palette-selection {
    flex-direction: column;
    gap: 1rem;
  }

  .foundations-step-number-calm-color-palette-selection {
    min-width: auto;
  }
}

.palette-selection-section-calm-color-palette-selection {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.palette-content-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.palette-text-calm-color-palette-selection {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.palette-title-calm-color-palette-selection {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.palette-description-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #334155;
}

.palette-highlight-calm-color-palette-selection {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f0fdf4;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.palette-highlight-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #047857;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.palette-image-calm-color-palette-selection {
  flex: 1 1 50%;
  min-height: 350px;
}

.palette-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .palette-content-calm-color-palette-selection {
    flex-direction: column;
  }

  .palette-text-calm-color-palette-selection,
  .palette-image-calm-color-palette-selection {
    flex: 1 1 100%;
  }

  .palette-image-calm-color-palette-selection {
    min-height: 280px;
  }
}

.palettes-cards-calm-color-palette-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.palette-card-calm-color-palette-selection {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.palette-card-calm-color-palette-selection:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.palette-card-number-calm-color-palette-selection {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.palette-card-title-calm-color-palette-selection {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.palette-card-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .palette-card-calm-color-palette-selection {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-calm-color-palette-selection {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-content-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-calm-color-palette-selection {
  flex: 1 1 45%;
  min-height: 400px;
}

.implementation-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.implementation-text-calm-color-palette-selection {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.implementation-title-calm-color-palette-selection {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.implementation-description-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .implementation-content-calm-color-palette-selection {
    flex-direction: column;
  }

  .implementation-image-calm-color-palette-selection,
  .implementation-text-calm-color-palette-selection {
    flex: 1 1 100%;
  }

  .implementation-image-calm-color-palette-selection {
    min-height: 300px;
  }
}

.details-section-calm-color-palette-selection {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.details-title-calm-color-palette-selection {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.details-grid-calm-color-palette-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.detail-item-calm-color-palette-selection {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.detail-item-title-calm-color-palette-selection {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.detail-item-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .detail-item-calm-color-palette-selection {
    flex: 1 1 100%;
    max-width: none;
  }
}

.details-visual-calm-color-palette-selection {
  min-height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.details-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-section-calm-color-palette-selection {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-calm-color-palette-selection {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  font-style: italic;
}

.quote-text-calm-color-palette-selection {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.quote-cite-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-calm-color-palette-selection {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-calm-color-palette-selection {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-calm-color-palette-selection {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-calm-color-palette-selection {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-description-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #334155;
}

.conclusion-image-calm-color-palette-selection {
  flex: 1 1 50%;
  min-height: 350px;
}

.conclusion-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .conclusion-content-calm-color-palette-selection {
    flex-direction: column;
  }

  .conclusion-text-calm-color-palette-selection,
  .conclusion-image-calm-color-palette-selection {
    flex: 1 1 100%;
  }

  .conclusion-image-calm-color-palette-selection {
    min-height: 280px;
  }
}

.disclaimer-section-calm-color-palette-selection {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-calm-color-palette-selection {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-calm-color-palette-selection {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.disclaimer-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-calm-color-palette-selection:last-child {
  margin-bottom: 0;
}

.related-section-calm-color-palette-selection {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-calm-color-palette-selection {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-calm-color-palette-selection {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
}

.related-cards-calm-color-palette-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-calm-color-palette-selection {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-calm-color-palette-selection:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-calm-color-palette-selection {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-calm-color-palette-selection {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-calm-color-palette-selection {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}

.related-card-text-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.related-card-link-calm-color-palette-selection {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
  display: block;
}

.related-card-link-calm-color-palette-selection:hover {
  color: var(--color-primary-hover);
  padding-left: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 768px) {
  .related-card-calm-color-palette-selection {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .section-tag-calm-color-palette-selection {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .hero-section-calm-color-palette-selection {
    padding: 6rem 0;
  }

  .introduction-section-calm-color-palette-selection,
  .palette-selection-section-calm-color-palette-selection,
  .implementation-section-calm-color-palette-selection,
  .details-section-calm-color-palette-selection,
  .conclusion-section-calm-color-palette-selection,
  .disclaimer-section-calm-color-palette-selection,
  .related-section-calm-color-palette-selection {
    padding: 6rem 0;
  }

  .foundations-section-calm-color-palette-selection {
    padding: 6rem 0;
  }
}

/* Post Page 2 Styles */
/* Main component wrapper */
.main-natural-materials-mindful-design {
  width: 100%;
  background: #022c22;
}

/* Hero section */
.hero-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.hero-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.hero-text-wrapper-natural-materials-mindful-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.breadcrumbs-natural-materials-mindful-design {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-natural-materials-mindful-design a {
  color: #6ee7b7;
  transition: color 0.3s ease;
}

.breadcrumbs-natural-materials-mindful-design a:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

.breadcrumbs-natural-materials-mindful-design span {
  color: #6ee7b7;
  opacity: 0.6;
}

.hero-title-natural-materials-mindful-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-natural-materials-mindful-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-natural-materials-mindful-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-natural-materials-mindful-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-natural-materials-mindful-design i {
  font-size: 0.9em;
}

.hero-image-wrapper-natural-materials-mindful-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-stats-natural-materials-mindful-design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-natural-materials-mindful-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.stat-number-natural-materials-mindful-design {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.stat-label-natural-materials-mindful-design {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .hero-text-wrapper-natural-materials-mindful-design,
  .hero-image-wrapper-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }

  .hero-stats-natural-materials-mindful-design {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-natural-materials-mindful-design {
    width: 100%;
  }
}

/* Intro section */
.intro-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e4a;
  position: relative;
  overflow: hidden;
}

.intro-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-natural-materials-mindful-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-heading-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.intro-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-natural-materials-mindful-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-content-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .intro-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .intro-text-natural-materials-mindful-design,
  .intro-image-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Materials section */
.materials-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.section-header-natural-materials-mindful-design {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-tag-natural-materials-mindful-design {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  display: inline-block;
}

.materials-title-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.section-subtitle-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.materials-cards-natural-materials-mindful-design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.material-card-natural-materials-mindful-design {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.material-card-natural-materials-mindful-design:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.material-card-icon-natural-materials-mindful-design {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.material-card-title-natural-materials-mindful-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.material-card-text-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: #a7f3d0;
}

@media (max-width: 768px) {
  .material-card-natural-materials-mindful-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Selection process section */
.selection-process-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e4a;
  position: relative;
  overflow: hidden;
}

.selection-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.selection-text-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.selection-heading-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.selection-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.process-steps-natural-materials-mindful-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-step-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid #10b981;
}

.process-step-number-natural-materials-mindful-design {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-natural-materials-mindful-design {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: #a7f3d0;
}

.selection-image-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.selection-image-content-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .selection-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .selection-text-natural-materials-mindful-design,
  .selection-image-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }

  .process-step-natural-materials-mindful-design {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Harmony section */
.harmony-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.harmony-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.harmony-image-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.harmony-image-content-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.harmony-text-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.harmony-heading-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.featured-quote-natural-materials-mindful-design {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-md);
}

.quote-text-natural-materials-mindful-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-cite-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  font-style: normal;
  display: block;
  opacity: 0.85;
}

.harmony-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.harmony-list-natural-materials-mindful-design {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  padding: 0;
}

.harmony-list-item-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.harmony-list-item-natural-materials-mindful-design::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #10b981;
}

@media (max-width: 768px) {
  .harmony-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .harmony-image-natural-materials-mindful-design,
  .harmony-text-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Implementation section */
.implementation-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e4a;
  position: relative;
  overflow: hidden;
}

.implementation-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-text-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.implementation-subheading-natural-materials-mindful-design {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.implementation-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-image-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.implementation-image-content-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .implementation-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .implementation-text-natural-materials-mindful-design,
  .implementation-image-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Maintenance section */
.maintenance-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.maintenance-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.maintenance-image-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.maintenance-image-content-natural-materials-mindful-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.maintenance-text-natural-materials-mindful-design {
  flex: 1 1 350px;
  min-width: 300px;
}

.maintenance-heading-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.maintenance-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.maintenance-tips-natural-materials-mindful-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.tip-box-natural-materials-mindful-design {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid #10b981;
  border-radius: var(--radius-md);
}

.tip-title-natural-materials-mindful-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tip-text-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: #a7f3d0;
}

@media (max-width: 768px) {
  .maintenance-content-natural-materials-mindful-design {
    flex-direction: column;
  }

  .maintenance-image-natural-materials-mindful-design,
  .maintenance-text-natural-materials-mindful-design {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Conclusion section */
.conclusion-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e4a;
  position: relative;
  overflow: hidden;
}

.conclusion-content-natural-materials-mindful-design {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-heading-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.conclusion-paragraph-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-natural-materials-mindful-design {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-text-natural-materials-mindful-design {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.btn-primary-natural-materials-mindful-design {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.btn-primary-natural-materials-mindful-design:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Disclaimer section */
.disclaimer-section-natural-materials-mindful-design {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-natural-materials-mindful-design {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.disclaimer-title-natural-materials-mindful-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.disclaimer-text-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.7;
  color: #a7f3d0;
}

/* Related section */
.related-section-natural-materials-mindful-design {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e4a;
  position: relative;
  overflow: hidden;
}

.related-title-natural-materials-mindful-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.related-subtitle-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.related-cards-natural-materials-mindful-design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-natural-materials-mindful-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-natural-materials-mindful-design:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.related-card-image-natural-materials-mindful-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0f766e;
}

.related-image-natural-materials-mindful-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-natural-materials-mindful-design {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-natural-materials-mindful-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: #a7f3d0;
}

.related-card-link-natural-materials-mindful-design {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-natural-materials-mindful-design:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-natural-materials-mindful-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-stats-natural-materials-mindful-design {
    gap: 1.5rem;
  }

  .stat-item-natural-materials-mindful-design {
    flex: 1 1 auto;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Post Page 3 Styles */
/* Main component wrapper */
.main-spatial-arrangement-psychology {
  width: 100%;
  background: #022c22;
}

/* ============ HERO SECTION ============ */
.hero-section-spatial-arrangement-psychology {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-spatial-arrangement-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-spatial-arrangement-psychology a {
  color: #34d399;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-spatial-arrangement-psychology a:hover {
  color: #6ee7b7;
}

.breadcrumbs-spatial-arrangement-psychology span {
  color: #6ee7b7;
  margin: 0 0.25rem;
}

.hero-content-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero-text-wrapper-spatial-arrangement-psychology {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-spatial-arrangement-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-spatial-arrangement-psychology {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-spatial-arrangement-psychology i {
  color: #34d399;
}

.hero-image-wrapper-spatial-arrangement-psychology {
  width: 100%;
  max-width: 600px;
}

.hero-image-spatial-arrangement-psychology {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-content-spatial-arrangement-psychology {
    flex-direction: row;
    align-items: center;
  }

  .hero-text-wrapper-spatial-arrangement-psychology {
    flex: 1 1 50%;
  }

  .hero-image-wrapper-spatial-arrangement-psychology {
    flex: 1 1 50%;
  }
}

/* ============ INTRO SECTION ============ */
.intro-section-spatial-arrangement-psychology {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.intro-text-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-heading-spatial-arrangement-psychology {
  color: #1a1a1a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro-paragraph-spatial-arrangement-psychology {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-weight: 400;
}

.intro-image-spatial-arrangement-psychology {
  width: 100%;
}

.intro-img-spatial-arrangement-psychology {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .intro-content-spatial-arrangement-psychology {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .intro-text-spatial-arrangement-psychology {
    flex: 1 1 50%;
  }

  .intro-image-spatial-arrangement-psychology {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

/* ============ PRINCIPLES SECTION ============ */
.principles-section-spatial-arrangement-psychology {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-spatial-arrangement-psychology {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.principles-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-subtitle-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-spatial-arrangement-psychology {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border-left: 4px solid #34d399;
}

.principles-step-number-spatial-arrangement-psychology {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #34d399;
  flex-shrink: 0;
  min-width: 70px;
}

.principles-step-content-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.principles-step-text-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principles-step-spatial-arrangement-psychology {
    flex-direction: column;
  }

  .principles-step-number-spatial-arrangement-psychology {
    min-width: auto;
  }
}

/* ============ IMPLEMENTATION SECTION ============ */
.implementation-section-spatial-arrangement-psychology {
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.implementation-text-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-spatial-arrangement-psychology {
  color: #1a1a1a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.implementation-paragraph-spatial-arrangement-psychology {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.implementation-highlight-spatial-arrangement-psychology {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-text-spatial-arrangement-psychology {
  color: #065f46;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.implementation-image-spatial-arrangement-psychology {
  width: 100%;
}

.implementation-img-spatial-arrangement-psychology {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .implementation-wrapper-spatial-arrangement-psychology {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .implementation-text-spatial-arrangement-psychology {
    flex: 1 1 50%;
  }

  .implementation-image-spatial-arrangement-psychology {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

/* ============ PSYCHOLOGY SECTION ============ */
.psychology-section-spatial-arrangement-psychology {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.psychology-wrapper-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.psychology-text-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.psychology-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.psychology-paragraph-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.psychology-quote-spatial-arrangement-psychology {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #34d399;
  background: rgba(16, 185, 129, 0.08);
  margin: 1.5rem 0;
  border-radius: 8px;
}

.quote-text-spatial-arrangement-psychology {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-spatial-arrangement-psychology {
  display: block;
  font-size: 0.875rem;
  color: #a7f3d0;
  font-style: normal;
  opacity: 0.9;
}

.psychology-image-spatial-arrangement-psychology {
  width: 100%;
}

.psychology-img-spatial-arrangement-psychology {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .psychology-wrapper-spatial-arrangement-psychology {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .psychology-image-spatial-arrangement-psychology {
    flex: 1 1 50%;
    order: -1;
  }

  .psychology-text-spatial-arrangement-psychology {
    flex: 1 1 50%;
  }
}

/* ============ CONCLUSION SECTION ============ */
.conclusion-section-spatial-arrangement-psychology {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-spatial-arrangement-psychology {
  color: #1a1a1a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-paragraph-spatial-arrangement-psychology {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-checklist-spatial-arrangement-psychology {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0fdf4;
  border-radius: 12px;
  border: 1px solid #d1fae5;
  margin: 1rem 0;
}

.checklist-title-spatial-arrangement-psychology {
  color: #065f46;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checklist-items-spatial-arrangement-psychology {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.checklist-item-spatial-arrangement-psychology {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.checklist-item-spatial-arrangement-psychology::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.conclusion-closing-spatial-arrangement-psychology {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* ============ RELATED SECTION ============ */
.related-section-spatial-arrangement-psychology {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-spatial-arrangement-psychology {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.related-subtitle-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-spatial-arrangement-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-spatial-arrangement-psychology {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.related-card-spatial-arrangement-psychology:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.related-card-image-spatial-arrangement-psychology {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-spatial-arrangement-psychology {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-spatial-arrangement-psychology {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.related-card-text-spatial-arrangement-psychology {
  color: #a7f3d0;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.related-link-spatial-arrangement-psychology {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  margin-top: auto;
  transition: all 0.3s ease;
  display: inline-block;
}

.related-link-spatial-arrangement-psychology:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-spatial-arrangement-psychology {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============ DISCLAIMER SECTION ============ */
.disclaimer-section-spatial-arrangement-psychology {
  background: #f8f9fa;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-spatial-arrangement-psychology {
  background: #fff7ed;
  border-left: 4px solid #ea580c;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-spatial-arrangement-psychology {
  color: #7c2d12;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-spatial-arrangement-psychology {
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Post Page 4 Styles */
.main-japanese-minimalism-meditation-space {
  width: 100%;
  background: #022c22;
  color: #a7f3d0;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #022c22;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-japanese-minimalism-meditation-space {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
}

.breadcrumbs-japanese-minimalism-meditation-space a,
.breadcrumbs-japanese-minimalism-meditation-space span {
  color: #6ee7b7;
  text-decoration: none;
}

.breadcrumbs-japanese-minimalism-meditation-space a:hover {
  color: #34d399;
  text-decoration: underline;
}

.hero-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-japanese-minimalism-meditation-space {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.meta-badge-japanese-minimalism-meditation-space {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #34d399;
}

.meta-badge-japanese-minimalism-meditation-space i {
  color: #10b981;
}

.hero-image-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

.hero-stats-japanese-minimalism-meditation-space {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-japanese-minimalism-meditation-space {
  flex: 1 1 auto;
  text-align: center;
}

.stat-number-japanese-minimalism-meditation-space {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-japanese-minimalism-meditation-space {
  display: block;
  font-size: 0.875rem;
  color: #a7f3d0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .hero-text-block-japanese-minimalism-meditation-space,
  .hero-image-block-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-japanese-minimalism-meditation-space {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.intro-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-text-japanese-minimalism-meditation-space p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-img-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .intro-text-japanese-minimalism-meditation-space,
  .intro-image-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #064e4a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.section-header-japanese-minimalism-meditation-space {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-japanese-minimalism-meditation-space {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.principles-subtitle-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.principles-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.principles-text-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-intro-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.principles-list-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.principle-item-japanese-minimalism-meditation-space {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.principle-number-japanese-minimalism-meditation-space {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.principle-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-name-japanese-minimalism-meditation-space {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.principle-description-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.principles-image-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-img-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .principles-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .principles-text-japanese-minimalism-meditation-space,
  .principles-image-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implementation-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-image-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

.implementation-steps-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-japanese-minimalism-meditation-space {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.step-number-japanese-minimalism-meditation-space {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-text-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
}

.step-description-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .implementation-image-japanese-minimalism-meditation-space,
  .implementation-steps-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.colors-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.colors-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.colors-text-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-intro-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.colors-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.color-palette-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.color-item-japanese-minimalism-meditation-space {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.color-swatch-japanese-minimalism-meditation-space {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.color-name-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.color-description-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.colors-image-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-img-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .colors-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .colors-text-japanese-minimalism-meditation-space,
  .colors-image-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .color-item-japanese-minimalism-meditation-space {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.quote-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #022c22;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.featured-quote-japanese-minimalism-meditation-space {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-japanese-minimalism-meditation-space {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-japanese-minimalism-meditation-space {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  font-style: normal;
}

.conclusion-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-description-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-text-japanese-minimalism-meditation-space p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cta-box-japanese-minimalism-meditation-space {
  background: linear-gradient(135deg, #10b981, #34d399);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.cta-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.cta-text-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #000000;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cta-button-japanese-minimalism-meditation-space {
  display: inline-block;
  background: #ffffff;
  color: #10b981;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.cta-button-japanese-minimalism-meditation-space:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.conclusion-image-japanese-minimalism-meditation-space {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-japanese-minimalism-meditation-space {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .conclusion-content-japanese-minimalism-meditation-space {
    flex-direction: column;
  }

  .conclusion-text-japanese-minimalism-meditation-space,
  .conclusion-image-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #064e4a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-japanese-minimalism-meditation-space {
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #34d399;
}

.disclaimer-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.related-section-japanese-minimalism-meditation-space {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-header-japanese-minimalism-meditation-space {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-japanese-minimalism-meditation-space {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-japanese-minimalism-meditation-space {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-japanese-minimalism-meditation-space {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-japanese-minimalism-meditation-space:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-card-image-japanese-minimalism-meditation-space {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-japanese-minimalism-meditation-space {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-japanese-minimalism-meditation-space {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

.related-card-text-japanese-minimalism-meditation-space {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-card-japanese-minimalism-meditation-space {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Post Page 5 Styles */
.main-home-office-lighting-focus {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.hero-section-home-office-lighting-focus {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-home-office-lighting-focus {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-description-home-office-lighting-focus {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a7f3d0;
  max-width: 700px;
}

.hero-meta-home-office-lighting-focus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.meta-badge-home-office-lighting-focus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #6ee7b7;
  font-weight: 500;
}

.meta-badge-home-office-lighting-focus i {
  font-size: 0.875rem;
  color: #10b981;
}

.hero-image-container-home-office-lighting-focus {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-image-home-office-lighting-focus {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════════════ */
/* INTRO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.intro-section-home-office-lighting-focus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-home-office-lighting-focus {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-description-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.intro-quote-home-office-lighting-focus {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-md);
}

.intro-quote-text-home-office-lighting-focus {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #1e293b;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.intro-image-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-home-office-lighting-focus {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CONCEPT SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.concept-section-home-office-lighting-focus {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.concept-header-home-office-lighting-focus {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.concept-tag-home-office-lighting-focus {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.concept-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.concept-subtitle-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.concept-content-home-office-lighting-focus {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concept-text-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-subheading-home-office-lighting-focus {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.concept-description-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #a7f3d0;
  margin-bottom: 1.5rem;
}

.concept-list-home-office-lighting-focus {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.concept-list-item-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #a7f3d0;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.concept-list-item-home-office-lighting-focus::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.concept-image-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-img-home-office-lighting-focus {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* IMPLEMENTATION SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.implementation-section-home-office-lighting-focus {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-header-home-office-lighting-focus {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.implementation-tag-home-office-lighting-focus {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 185, 129, 0.1);
  color: #0d7377;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.implementation-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.implementation-steps-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.implementation-step-home-office-lighting-focus {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.implementation-step-number-home-office-lighting-focus {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.implementation-step-title-home-office-lighting-focus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.implementation-step-text-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #64748b;
}

.implementation-visual-home-office-lighting-focus {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.implementation-visual-img-home-office-lighting-focus {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════════════ */
/* PRACTICAL SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.practical-section-home-office-lighting-focus {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-header-home-office-lighting-focus {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.practical-tag-home-office-lighting-focus {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.practical-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.practical-content-home-office-lighting-focus {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-subheading-home-office-lighting-focus {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.practical-cards-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practical-card-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.practical-card-title-home-office-lighting-focus {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.practical-card-text-home-office-lighting-focus {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  line-height: 1.7;
  color: #a7f3d0;
}

.practical-checklist-home-office-lighting-focus {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.practical-checklist-item-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #a7f3d0;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.practical-checklist-item-home-office-lighting-focus::before {
  content: "☑";
  position: absolute;
  left: 0;
  color: #10b981;
}

.practical-image-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-img-home-office-lighting-focus {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ADVANCED SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.advanced-section-home-office-lighting-focus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-header-home-office-lighting-focus {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.advanced-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.advanced-subtitle-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
}

.advanced-content-home-office-lighting-focus {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-text-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-subheading-home-office-lighting-focus {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.advanced-subheading-home-office-lighting-focus:first-of-type {
  margin-top: 0;
}

.advanced-description-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.advanced-image-home-office-lighting-focus {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-img-home-office-lighting-focus {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CONCLUSION SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.conclusion-section-home-office-lighting-focus {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-home-office-lighting-focus {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #a7f3d0;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.conclusion-highlight-home-office-lighting-focus {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.conclusion-highlight-text-home-office-lighting-focus {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

.conclusion-cta-home-office-lighting-focus {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #000000;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-primary);
}

.conclusion-cta-home-office-lighting-focus:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ═══════════════════════════════════════════════════════════════ */
/* DISCLAIMER SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.disclaimer-section-home-office-lighting-focus {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-home-office-lighting-focus {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: var(--radius-md);
}

.disclaimer-title-home-office-lighting-focus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-home-office-lighting-focus {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RELATED POSTS SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.related-section-home-office-lighting-focus {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-home-office-lighting-focus {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.related-title-home-office-lighting-focus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.related-subtitle-home-office-lighting-focus {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
}

.related-cards-home-office-lighting-focus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-home-office-lighting-focus {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.related-card-home-office-lighting-focus:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.related-card-image-home-office-lighting-focus {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

.related-card-img-home-office-lighting-focus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-home-office-lighting-focus:hover .related-card-img-home-office-lighting-focus {
  transform: scale(1.05);
}

.related-card-content-home-office-lighting-focus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-home-office-lighting-focus {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.related-card-text-home-office-lighting-focus {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: #a7f3d0;
  flex-grow: 1;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .intro-content-home-office-lighting-focus,
  .concept-content-home-office-lighting-focus,
  .practical-content-home-office-lighting-focus,
  .advanced-content-home-office-lighting-focus {
    flex-direction: column;
  }

  .intro-text-home-office-lighting-focus,
  .intro-image-home-office-lighting-focus,
  .concept-text-home-office-lighting-focus,
  .concept-image-home-office-lighting-focus,
  .practical-text-home-office-lighting-focus,
  .practical-image-home-office-lighting-focus,
  .advanced-text-home-office-lighting-focus,
  .advanced-image-home-office-lighting-focus {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-container-home-office-lighting-focus {
    max-height: 300px;
  }

  .related-card-home-office-lighting-focus {
    flex: 1 1 100%;
    max-width: none;
  }

  .implementation-step-home-office-lighting-focus {
    flex-direction: column;
    align-items: flex-start;
  }

  .implementation-step-number-home-office-lighting-focus {
    min-width: 50px;
  }
}

@media (min-width: 768px) {
  .hero-image-container-home-office-lighting-focus {
    max-height: 400px;
  }

  .related-card-home-office-lighting-focus {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-image-container-home-office-lighting-focus {
    max-height: 500px;
  }

  .related-card-home-office-lighting-focus {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: 100%;
  }
}

/* About Page Styles */
.calm-interior-about {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

  /* HERO SECTION */
  .heritage-hero-about {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .heritage-hero-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .heritage-hero-title-about {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.15;
    font-family: var(--font-heading);
  }

  .heritage-hero-subtitle-about {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
  }

  .heritage-hero-stats-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3.5rem);
    margin-top: 2rem;
  }

  .stat-block-about {
    flex: 0 1 auto;
  }

  .stat-number-about {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
  }

  .hero-visual-about {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: 1.5rem;
  }

  @media (min-width: 768px) {
    .heritage-hero-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .heritage-hero-content-about {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .hero-visual-about {
      flex: 1;
      margin-top: 0;
    }
  }

  /* PHILOSOPHY SECTION */
  .design-philosophy-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .design-philosophy-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .philosophy-header-about {
    text-align: center;
    margin-bottom: 1rem;
  }

  .philosophy-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

  .philosophy-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
  }

  .philosophy-intro-about {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .philosophy-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .philosophy-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.15);
  }

  .philosophy-card-icon-about {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .philosophy-card-title-about {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
  }

  .philosophy-card-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .philosophy-card-about {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  /* APPROACH SECTION */
  .mindful-approach-about {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .approach-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4.5rem);
  }

  .approach-intro-about {
    text-align: center;
    margin-bottom: 2rem;
  }

  .approach-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
  }

  .approach-description-about {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: #475569;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
  }

  .process-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .process-step-about {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
  }

  .process-step-number-about {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 70px;
  }

  .process-step-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
  }

  .process-step-title-about {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
  }

  .process-step-text-about {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
  }

  .approach-visual-about {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .mindful-approach-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .approach-content-about {
      gap: clamp(3.5rem, 8vw, 5rem);
    }
  }

  /* VALUES SECTION */
  .core-values-about {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .values-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .values-header-about {
    text-align: center;
  }

  .values-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
  }

  .values-intro-about {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .values-grid-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .value-item-about {
    flex: 1 1 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
  }

  .value-icon-about {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: var(--color-bg-primary);
    font-size: 1.5rem;
  }

  .value-name-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .value-description-about {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
  }

  .values-visual-about {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .value-item-about {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  /* FEATURED QUOTE */
  .featured-quote-about {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-md);
    margin: clamp(2rem, 4vw, 3.5rem) 0;
  }

  .quote-text-about {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-style: italic;
  }

  .quote-author-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-style: normal;
    font-weight: 500;
  }

  /* COMMITMENT SECTION */
  .commitment-section-about {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .commitment-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .commitment-intro-about {
    text-align: center;
  }

  .commitment-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
  }

  .commitment-text-about {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: #475569;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .commitment-features-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .commitment-feature-about {
    flex: 1 1 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    text-align: center;
  }

  .commitment-feature-icon-about {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
  }

  .commitment-feature-title-about {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
  }

  .commitment-feature-text-about {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .commitment-feature-about {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  /* DISCLAIMER SECTION */
  .transparency-disclaimer-about {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    font-size: 1.25rem;
    color: var(--color-primary);
  }

  .disclaimer-text-about {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 800px;
  }

  @media (min-width: 768px) {
    .calm-interior-about {
      scroll-behavior: smooth;
    }
  }

/* Privacy Page Styles */
.legal-sanctuary {
  width: 100%;
  font-family: var(--font-primary);
  background: #f5f3f0;
  color: #333333;
}

.legal-sanctuary .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.legal-sanctuary-header {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.legal-sanctuary-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-sanctuary-header h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-sanctuary-header-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: italic;
}

.legal-sanctuary-content {
  background: #f5f3f0;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.legal-sanctuary-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.legal-sanctuary-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-sanctuary-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-bg-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-sanctuary-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #555555;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-sanctuary-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: clamp(1.5rem, 3vw, 2rem);
  list-style: disc;
}

.legal-sanctuary-section li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: #555555;
}

.legal-sanctuary-section strong {
  font-weight: 600;
  color: var(--color-bg-primary);
}

.legal-sanctuary-contact {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.legal-sanctuary-contact h2 {
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.legal-sanctuary-contact p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.875rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-sanctuary-contact strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-sanctuary-header {
    padding: 5rem 0;
  }

  .legal-sanctuary-content {
    padding: 5rem 0;
  }

  .legal-sanctuary-contact {
    padding: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-sanctuary-header {
    padding: 6rem 0;
  }

  .legal-sanctuary-content {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  animation: icon-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
}

@keyframes icon-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.thank-message {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: clamp(0.5rem, 2vw, 1rem) auto;
}

.thank-message p {
  color: var(--color-text-muted);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  width: 100%;
  max-width: 600px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(1rem, 2vw, 1.5rem) auto;
  animation: slide-up 0.7s ease-out 0.2s both;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-next-steps h2 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(2.5rem, 6vw, 3rem);
  width: clamp(2.5rem, 6vw, 3rem);
  height: clamp(2.5rem, 6vw, 3rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  flex-shrink: 0;
}

.step-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.6;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
  border: none;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
    padding: clamp(2rem, 4vw, 3rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .steps-list li {
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .thank-next-steps {
    padding: clamp(2.5rem, 5vw, 3.5rem);
  }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }

  .thank-next-steps {
    padding: 3.5rem;
  }

  .steps-list li {
    gap: 1.75rem;
  }
}

/* 404 Page Styles */
.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.error-visual {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  margin: 0;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  opacity: 0.6;
  animation: float-decoration 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.8;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 500px;
  width: 100%;
}

.suggestion-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestion-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.suggestion-list i {
  color: var(--color-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-primary);
  color: #022c22;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .error-code {
    font-size: clamp(5rem, 12vw, 7rem);
  }

  .error-decoration {
    right: -60px;
    font-size: clamp(4rem, 8vw, 5.5rem);
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .error-suggestions {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 6rem 0;
  }

  .error-code {
    font-size: clamp(6rem, 12vw, 8rem);
  }

  .error-decoration {
    right: -80px;
    font-size: clamp(4.5rem, 8vw, 6rem);
  }

  .error-content {
    gap: 3rem;
  }

  .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.5rem;
  }

  .error-message {
    font-size: 1.125rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .error-code-wrapper {
    margin-bottom: 1rem;
  }

  .error-decoration {
    right: -30px;
    top: -10px;
    font-size: 3rem;
  }

  .suggestion-list {
    gap: 0.75rem;
  }

  .error-content {
    padding: 1rem;
  }
}