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

:root {
  /* HYBRID PALETTE: Dark Dominant + Light Breaks (H4 Pattern) */
  /* Most sections dark with intentional light breathing room */
  
  /* Dark section backgrounds */
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1117;
  
  /* Light section backgrounds */
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  /* Card backgrounds */
  --color-bg-card-dark: rgba(255, 255, 255, 0.04);
  --color-bg-card-light: #ffffff;
  
  /* Text colors for dark backgrounds */
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-tertiary: #94a3b8;
  
  /* Text colors for light backgrounds */
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #374151;
  --color-text-light-tertiary: #6b7280;
  
  /* Accent colors - sophisticated sage and warm bronze */
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #d4a574;
  --color-secondary-hover: #c49563;
  --color-accent-warm: #d97706;
  
  /* Typography */
  --font-heading: 'Noto Serif JP', serif;
  --font-body: 'Inter', sans-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.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

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

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

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

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

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

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
}

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

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

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

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

.btn-outline-light {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  border: 2px solid var(--color-text-light-primary);
  background: transparent;
  color: var(--color-text-light-primary);
}

.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Form styles */
form {
  width: 100%;
}

.form-group {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: var(--space-sm);
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

button[type="submit"] {
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

button[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

/* Card styles */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Icon styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transition: all 0.3s ease;
}

.icon-sm {
  font-size: 1.25rem;
}

.icon-md {
  font-size: 1.5rem;
}

.icon-lg {
  font-size: 2rem;
}

.icon-xl {
  font-size: 2.5rem;
}

/* Decorative elements */
.decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.decoration-blur {
  filter: blur(40px);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
a:focus,
input:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text selection */
::selection {
  background: var(--color-primary);
  color: #ffffff;
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1117;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.04);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-tertiary: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #374151;
  --color-text-light-tertiary: #6b7280;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #d4a574;
  --color-secondary-hover: #c49563;
  --color-accent-warm: #d97706;
  --font-heading: 'Noto Serif JP', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

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

.header-harmony-zen {
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-harmony-zen-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-harmony-zen-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.header-harmony-zen-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  letter-spacing: -0.5px;
}

.header-harmony-zen-desktop-nav {
  display: none;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  align-items: center;
  flex: 1;
  margin-left: clamp(2rem, 4vw, 4rem);
}

.header-harmony-zen-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-light-secondary);
  text-decoration: none;
  transition: color 300ms ease-in-out;
  position: relative;
}

.header-harmony-zen-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease-in-out;
}

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

.header-harmony-zen-nav-link:hover::after {
  width: 100%;
}

.header-harmony-zen-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-harmony-zen-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.header-harmony-zen-cta-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.header-harmony-zen-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-light-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease-in-out;
  flex-shrink: 0;
}

.header-harmony-zen-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-harmony-zen-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-harmony-zen-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-light-primary);
  display: flex;
  flex-direction: column;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.header-harmony-zen-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-harmony-zen-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-harmony-zen-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-light-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease-in-out;
}

.header-harmony-zen-mobile-close:hover {
  color: var(--color-primary);
}

.header-harmony-zen-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-harmony-zen-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

.header-harmony-zen-mobile-link {
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-light-primary);
  text-decoration: none;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 300ms ease-in-out;
}

.header-harmony-zen-mobile-link:hover {
  background: var(--color-bg-light-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.25rem, 4vw, 1.75rem);
}

.header-harmony-zen-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.header-harmony-zen-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.header-harmony-zen-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.header-harmony-zen-mobile-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

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

  .header-harmony-zen-cta-button {
    display: inline-block;
  }

  .header-harmony-zen-mobile-toggle {
    display: none;
  }

  .header-harmony-zen-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-harmony-zen-logo-text {
    display: none;
  }

  .header-harmony-zen-logo-img {
    width: 36px;
    height: 36px;
  }
}

@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;
  }
}

    .harmony-home {
  width: 100%;
}

.harmony-home * {
  box-sizing: border-box;
}

.harmony-home section,
.harmony-home [class*="-section"] {
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.hero-section {
  background: #0f172a;
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}

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

.hero-gradient-mesh {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-orb-1 {
  position: absolute;
  bottom: 100px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-orb-2 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-organic-shape {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(40px);
  z-index: 2;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(212, 165, 116, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-panel {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.4;
}

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

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

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

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #94a3b8;
  font-weight: 500;
}

.principles-section {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

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

.principles-shape-2 {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(212, 165, 116, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.principles-float-element {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 160px;
  height: 120px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

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

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

.principles-tag {
  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: 600;
  margin-bottom: 1rem;
}

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

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

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

.principles-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.principles-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

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

.principles-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.principles-card-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.featured-section {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

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

.featured-mesh-2 {
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-accent-corner {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(212, 165, 116, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

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

.featured-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.featured-tag {
  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: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.featured-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-card {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex-grow: 1;
}

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

.featured-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 300ms ease;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.featured-card-link:hover {
  border-bottom-color: #10b981;
  transform: translateX(4px);
}

.featured-cta-box {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.featured-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-cta-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

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

.btn-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.journey-section {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.journey-shape-left {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.journey-shape-right {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(212, 165, 116, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.journey-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.journey-line-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.journey-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.journey-step-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

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

.journey-step-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.philosophy-section {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.philosophy-mesh-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.philosophy-mesh-2 {
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.philosophy-float-shape {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.philosophy-accent-dots {
  position: absolute;
  bottom: 20%;
  right: 5%;
  font-size: 3rem;
  color: rgba(16, 185, 129, 0.15);
  z-index: 2;
  pointer-events: none;
  letter-spacing: 0.5rem;
}

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

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

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

.philosophy-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.philosophy-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.philosophy-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.philosophy-benefit-icon {
  color: #10b981;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-benefit-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.philosophy-quote {
  flex: 1 1 400px;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #f8fafc;
  border-radius: 8px;
}

.philosophy-quote p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.philosophy-quote cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .philosophy-content {
    flex-direction: column;
  }

  .philosophy-text-block,
  .philosophy-quote {
    flex: 1 1 100%;
  }
}

.resources-section {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

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

.resources-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.resources-shape-accent {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.resources-line-element {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.resources-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.resources-tag {
  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: 600;
  margin-bottom: 1rem;
}

.resources-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.resources-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resources-item {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

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

.resources-item-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.resources-item-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-section {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

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

.contact-glow-2 {
  position: absolute;
  bottom: 50px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

.contact-accent-line {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

.contact-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper {
  flex: 1 1 420px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
}

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

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 300ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

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

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #10b981;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

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

.contact-submit:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.contact-info-block {
  flex: 1 1 400px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-info-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  min-width: 30px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-description {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.contact-faq {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-faq-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-faq-item {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.contact-faq-item strong {
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 300ms ease;
}

.cookie-btn-accept {
  background: #10b981;
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-stats {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .principles-cards,
  .featured-cards,
  .resources-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .principles-card,
  .resources-item {
    flex: 1 1 100%;
    max-width: none;
  }

  .philosophy-content {
    flex-direction: column;
  }

  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }

  .journey-step {
    gap: 1.25rem;
  }

  .journey-step-number {
    min-width: 50px;
  }
}

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

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

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

  .footer-content {
    display: block;
  }

  .footer-about-section {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(139, 166, 192, 0.15);
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  .footer-about-text {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
    max-width: 500px;
  }

  .footer-navigation-section,
  .footer-contact-section,
  .footer-legal-section {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .footer-nav-links,
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .footer-nav-link,
  .footer-legal-link {
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

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

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

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

  .footer-contact-details {
    display: block;
  }

  .footer-contact-item {
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    line-height: 1.8;
    color: var(--color-text-dark-secondary);
    margin-bottom: 0.5rem;
  }

  .footer-copyright-section {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: clamp(1.5rem, 4vw, 2rem);
    border-top: 1px solid rgba(139, 166, 192, 0.15);
    text-align: center;
  }

  .footer-copyright {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--color-text-dark-tertiary);
    letter-spacing: 0.3px;
  }

  .footer-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .footer-deco-glow-left {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    filter: blur(70px);
    top: 10%;
    left: -100px;
  }

  .footer-deco-glow-right {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
    filter: blur(75px);
    bottom: 20%;
    right: -80px;
  }

  @media (min-width: 768px) {
    .footer {
      padding: clamp(4rem, 10vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem) 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: clamp(2rem, 5vw, 3.5rem);
      align-items: start;
    }

    .footer-about-section {
      grid-column: 1 / -1;
      margin-bottom: 0;
      padding-bottom: clamp(2rem, 4vw, 2.5rem);
      border-bottom: 1px solid rgba(139, 166, 192, 0.15);
    }

    .footer-about-text {
      max-width: 600px;
    }

    .footer-navigation-section,
    .footer-contact-section,
    .footer-legal-section {
      margin-bottom: 0;
    }

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

    .footer-copyright-section {
      grid-column: 1 / -1;
      margin-top: clamp(2.5rem, 5vw, 3.5rem);
    }

    .footer-deco-glow-left {
      width: 320px;
      height: 320px;
      left: -120px;
      top: 15%;
    }

    .footer-deco-glow-right {
      width: 300px;
      height: 300px;
      right: -100px;
      bottom: 25%;
    }
  }

  @media (min-width: 1024px) {
    .footer {
      padding: clamp(5rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 4.5rem) 0;
    }

    .footer-content {
      grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
      gap: clamp(3rem, 6vw, 4rem);
    }

    .footer-about-section {
      grid-column: 1;
      padding-bottom: 0;
      border-bottom: none;
      margin-bottom: 0;
    }

    .footer-navigation-section,
    .footer-contact-section,
    .footer-legal-section {
      grid-column: auto;
    }

    .footer-copyright-section {
      grid-column: 1 / -1;
      margin-top: clamp(3rem, 6vw, 4rem);
    }
  }

  @media (max-width: 767px) {
    .footer-nav-links,
    .footer-legal-links {
      gap: 0.75rem;
      flex-direction: column;
    }

    .footer-nav-link,
    .footer-legal-link {
      display: inline-block;
    }

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

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

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

/* Category Page Styles */
/* Category Page: Interior Harmony */
.category-page-interior-harmony {
  width: 100%;
}

/* Hero Section */
.hero-section-interior-harmony {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

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

.harmony-glow-secondary {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.harmony-shape-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.harmony-float-element {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 200px;
  height: 150px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 50% 40% 60% 30%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.hero-description-interior-harmony {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats-interior-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  justify-content: center;
  margin-bottom: 3rem;
}

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

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

.stat-label-interior-harmony {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-buttons-interior-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

  .hero-stats-interior-harmony {
    gap: clamp(3rem, 6vw, 5rem);
  }
}

/* Posts Section */
.posts-section-interior-harmony {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.posts-header-interior-harmony {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.posts-grid-interior-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-interior-harmony {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-interior-harmony:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.card-image-interior-harmony {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-title-interior-harmony {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-interior-harmony {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-interior-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-interior-harmony {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(16, 185, 129, 0.08);
  color: #0f172a;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-interior-harmony i {
  color: #10b981;
  font-size: 0.875rem;
}

.card-link-interior-harmony {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.card-link-interior-harmony:hover {
  color: #059669;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .posts-section-interior-harmony {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

/* Philosophy Section */
.philosophy-section-interior-harmony {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0d1117;
  position: relative;
  overflow: hidden;
}

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

.philosophy-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.philosophy-content-interior-harmony {
  position: relative;
  z-index: 10;
}

.philosophy-title-interior-harmony {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-align: center;
}

.philosophy-principles-interior-harmony {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-step-interior-harmony {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.principle-step-interior-harmony:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.principle-number-interior-harmony {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-content-interior-harmony {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-title-interior-harmony {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.principle-text-interior-harmony {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .philosophy-section-interior-harmony {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .principle-step-interior-harmony {
    padding: clamp(1.75rem, 3vw, 2.25rem);
  }
}

/* Approach Section */
.approach-section-interior-harmony {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

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

.approach-shape-accent-2 {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(212, 165, 116, 0.06);
  border-radius: 70% 30% 46% 54% / 30% 70% 54% 46%;
  z-index: 1;
  pointer-events: none;
}

.approach-header-interior-harmony {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 2.5rem;
}

.approach-title-interior-harmony {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.approach-subtitle-interior-harmony {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-quote-interior-harmony {
  position: relative;
  z-index: 10;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-text-interior-harmony {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-interior-harmony {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.approach-cta-interior-harmony {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-title-interior-harmony {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta-text-interior-harmony {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .approach-section-interior-harmony {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

/* Responsive utilities */
@media (max-width: 768px) {
  .principle-step-interior-harmony {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .principle-number-interior-harmony {
    min-width: auto;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles */
.btn:focus-visible,
.card-link-interior-harmony:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 3px;
}

/* Post Page 1 Styles */
/* Main component wrapper */
.main-minimalism-foundation-harmony {
  width: 100%;
  background: #ffffff;
}

/* Hero Section - Dark Background */
.hero-section-minimalism-foundation-harmony {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-minimalism-foundation-harmony {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

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

.hero-description-minimalism-foundation-harmony {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  max-width: 800px;
}

.hero-meta-minimalism-foundation-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-minimalism-foundation-harmony {
  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-minimalism-foundation-harmony i {
  color: #10b981;
}

.breadcrumbs-minimalism-foundation-harmony {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-minimalism-foundation-harmony a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-minimalism-foundation-harmony a:hover {
  color: #7dd3fc;
}

.breadcrumbs-minimalism-foundation-harmony span {
  color: #64748b;
}

.breadcrumbs-minimalism-foundation-harmony > span:last-child {
  color: #cbd5e1;
  font-weight: 500;
}

.hero-image-wrapper-minimalism-foundation-harmony {
  width: 100%;
  margin-top: 2rem;
}

.hero-image-minimalism-foundation-harmony {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Intro Section - Light Background */
.intro-section-minimalism-foundation-harmony {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-wrapper-minimalism-foundation-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-minimalism-foundation-harmony {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-minimalism-foundation-harmony img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-wrapper-minimalism-foundation-harmony {
    flex-direction: column;
  }

  .intro-text-minimalism-foundation-harmony,
  .intro-image-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Clarity Section - Dark Background */
.clarity-section-minimalism-foundation-harmony {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.clarity-content-wrapper-minimalism-foundation-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.clarity-text-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-image-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-title-minimalism-foundation-harmony {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.clarity-description-minimalism-foundation-harmony {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.clarity-image-minimalism-foundation-harmony img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .clarity-content-wrapper-minimalism-foundation-harmony {
    flex-direction: column-reverse;
  }

  .clarity-text-minimalism-foundation-harmony,
  .clarity-image-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Principles Section - Light Background */
.principles-section-minimalism-foundation-harmony {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-minimalism-foundation-harmony {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-minimalism-foundation-harmony {
  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: 600;
  margin-bottom: 1rem;
}

.principles-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.principles-cards-minimalism-foundation-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principles-card-minimalism-foundation-harmony {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principles-card-minimalism-foundation-harmony:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.principles-card-number-minimalism-foundation-harmony {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-card-content-minimalism-foundation-harmony {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principles-card-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.principles-card-text-minimalism-foundation-harmony {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .principles-card-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Transformation Section - Dark Background */
.transformation-section-minimalism-foundation-harmony {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.transformation-content-wrapper-minimalism-foundation-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.transformation-text-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.transformation-image-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.transformation-title-minimalism-foundation-harmony {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.transformation-description-minimalism-foundation-harmony {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.transformation-quote-minimalism-foundation-harmony {
  padding: 2rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
}

.transformation-quote-text-minimalism-foundation-harmony {
  color: #f1f5f9;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.transformation-quote-author-minimalism-foundation-harmony {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.transformation-image-minimalism-foundation-harmony img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .transformation-content-wrapper-minimalism-foundation-harmony {
    flex-direction: column;
  }

  .transformation-text-minimalism-foundation-harmony,
  .transformation-image-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Practice Section - Light Background */
.practice-section-minimalism-foundation-harmony {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-minimalism-foundation-harmony {
  text-align: center;
  margin-bottom: 3rem;
}

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

.practice-subtitle-minimalism-foundation-harmony {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.practice-steps-minimalism-foundation-harmony {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-step-minimalism-foundation-harmony {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.practice-step-number-minimalism-foundation-harmony {
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.practice-step-content-minimalism-foundation-harmony {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-step-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.practice-step-text-minimalism-foundation-harmony {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-step-minimalism-foundation-harmony {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-step-number-minimalism-foundation-harmony {
    font-size: 1.5rem;
  }
}

/* Harmony Section - Dark Background */
.harmony-section-minimalism-foundation-harmony {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.harmony-content-wrapper-minimalism-foundation-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.harmony-text-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmony-image-minimalism-foundation-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmony-title-minimalism-foundation-harmony {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.harmony-description-minimalism-foundation-harmony {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.harmony-image-minimalism-foundation-harmony img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .harmony-content-wrapper-minimalism-foundation-harmony {
    flex-direction: column-reverse;
  }

  .harmony-text-minimalism-foundation-harmony,
  .harmony-image-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Related Section - Light Background */
.related-section-minimalism-foundation-harmony {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-minimalism-foundation-harmony {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-minimalism-foundation-harmony {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-minimalism-foundation-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-minimalism-foundation-harmony {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-minimalism-foundation-harmony:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-minimalism-foundation-harmony {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-minimalism-foundation-harmony {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-minimalism-foundation-harmony {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-minimalism-foundation-harmony {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-card-link-minimalism-foundation-harmony {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.related-card-link-minimalism-foundation-harmony:hover {
  color: #059669;
}

@media (max-width: 768px) {
  .related-card-minimalism-foundation-harmony {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Disclaimer Section - Light Background */
.disclaimer-section-minimalism-foundation-harmony {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-minimalism-foundation-harmony {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-minimalism-foundation-harmony {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-minimalism-foundation-harmony {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Responsive base adjustments */
@media (max-width: 768px) {
  .hero-section-minimalism-foundation-harmony {
    padding: 2rem 0;
  }

  .hero-image-minimalism-foundation-harmony {
    max-height: 300px;
  }

  .breadcrumbs-minimalism-foundation-harmony {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .meta-badge-minimalism-foundation-harmony {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
}

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

/* Post Page 2 Styles */
.main-art-empty-space-design {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
}

/* ========== HERO SECTION ========== */
.hero-section-art-empty-space-design {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-art-empty-space-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.breadcrumbs-art-empty-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-art-empty-space-design a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-art-empty-space-design a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-art-empty-space-design span {
  color: #94a3b8;
}

.hero-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-meta-art-empty-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-art-empty-space-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-art-empty-space-design i {
  font-size: 1rem;
}

.hero-description-art-empty-space-design {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 700px;
  font-weight: 400;
}

.hero-image-wrapper-art-empty-space-design {
  width: 100%;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-image-art-empty-space-design {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.intro-wrapper-art-empty-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-art-empty-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro-description-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.intro-description-art-empty-space-design em {
  color: #0f172a;
  font-style: italic;
  font-weight: 500;
}

.intro-image-art-empty-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-art-empty-space-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-art-empty-space-design {
    flex-direction: column;
  }
  
  .intro-text-art-empty-space-design,
  .intro-image-art-empty-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========== CONCEPT SECTION ========== */
.concept-section-art-empty-space-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.concept-wrapper-art-empty-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concept-image-art-empty-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-img-art-empty-space-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: block;
}

.concept-text-art-empty-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-subtitle-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
}

.concept-description-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.concept-quote-art-empty-space-design {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  margin: 1rem 0;
}

.quote-text-art-empty-space-design {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .concept-wrapper-art-empty-space-design {
    flex-direction: column;
  }
  
  .concept-image-art-empty-space-design,
  .concept-text-art-empty-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-header-art-empty-space-design {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-tag-art-empty-space-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-subtitle-art-empty-space-design {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-grid-art-empty-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-art-empty-space-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principle-card-art-empty-space-design:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.principle-number-art-empty-space-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.principle-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.3;
  font-weight: 600;
}

.principle-text-art-empty-space-design {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .principle-card-art-empty-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== APPLICATION SECTION ========== */
.application-section-art-empty-space-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.application-wrapper-art-empty-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-text-art-empty-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.application-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.application-description-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.application-subheading-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.3;
  font-weight: 600;
  margin-top: 1rem;
}

.application-text-detail-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.application-image-art-empty-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-img-art-empty-space-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .application-wrapper-art-empty-space-design {
    flex-direction: column;
  }
  
  .application-text-art-empty-space-design,
  .application-image-art-empty-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========== PRACTICE SECTION ========== */
.practice-section-art-empty-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-art-empty-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-art-empty-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-art-empty-space-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: block;
}

.practice-text-art-empty-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.practice-description-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.practice-steps-art-empty-space-design {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.practice-step-art-empty-space-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-art-empty-space-design {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-art-empty-space-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.3;
  font-weight: 600;
}

.step-text-art-empty-space-design {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .practice-wrapper-art-empty-space-design {
    flex-direction: column;
  }
  
  .practice-image-art-empty-space-design,
  .practice-text-art-empty-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========== CONCLUSION SECTION ========== */
.conclusion-section-art-empty-space-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-art-empty-space-design {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
}

.conclusion-highlight-art-empty-space-design {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: left;
}

.highlight-text-art-empty-space-design {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}

.conclusion-cta-art-empty-space-design {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-cta-art-empty-space-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-art-empty-space-design:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* ========== RELATED SECTION ========== */
.related-section-art-empty-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-art-empty-space-design {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.related-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-art-empty-space-design {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-art-empty-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-art-empty-space-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #ffffff;
}

.related-card-art-empty-space-design:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-art-empty-space-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-art-empty-space-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-art-empty-space-design:hover .related-img-art-empty-space-design {
  transform: scale(1.05);
}

.related-card-content-art-empty-space-design {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
  line-height: 1.3;
  font-weight: 600;
}

.related-card-text-art-empty-space-design {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}

.related-link-art-empty-space-design {
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-art-empty-space-design:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-art-empty-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== DISCLAIMER SECTION ========== */
.disclaimer-section-art-empty-space-design {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-art-empty-space-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: 8px;
}

.disclaimer-title-art-empty-space-design {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-art-empty-space-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-section-art-empty-space-design {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-art-empty-space-design,
  .concept-section-art-empty-space-design,
  .principles-section-art-empty-space-design,
  .application-section-art-empty-space-design,
  .practice-section-art-empty-space-design,
  .conclusion-section-art-empty-space-design,
  .related-section-art-empty-space-design,
  .disclaimer-section-art-empty-space-design {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-art-empty-space-design {
    padding: 6rem 0;
  }
  
  .intro-section-art-empty-space-design,
  .concept-section-art-empty-space-design,
  .principles-section-art-empty-space-design,
  .application-section-art-empty-space-design,
  .practice-section-art-empty-space-design,
  .conclusion-section-art-empty-space-design,
  .related-section-art-empty-space-design,
  .disclaimer-section-art-empty-space-design {
    padding: 6rem 0;
  }
}

/* Post Page 3 Styles */
.main-sacred-spaces-mindfulness {
  width: 100%;
}

.hero-section-sacred-spaces-mindfulness {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-sacred-spaces-mindfulness {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.breadcrumbs-sacred-spaces-mindfulness a,
.breadcrumbs-sacred-spaces-mindfulness span {
  color: #cbd5e1;
}

.breadcrumbs-sacred-spaces-mindfulness a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sacred-spaces-mindfulness a:hover {
  color: #059669;
  text-decoration: underline;
}

.hero-content-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-sacred-spaces-mindfulness {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-sacred-spaces-mindfulness {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.article-meta-sacred-spaces-mindfulness {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.meta-badge-sacred-spaces-mindfulness {
  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: #a7f3d0;
}

.meta-badge-sacred-spaces-mindfulness i {
  color: #10b981;
}

.hero-image-sacred-spaces-mindfulness {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.intro-section-sacred-spaces-mindfulness {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-wrapper-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-sacred-spaces-mindfulness {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.intro-image-sacred-spaces-mindfulness {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-sacred-spaces-mindfulness {
    flex-direction: column;
  }
  
  .intro-text-sacred-spaces-mindfulness,
  .intro-image-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-sacred-spaces-mindfulness {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-one-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-one-sacred-spaces-mindfulness {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-text-one-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-image-one-sacred-spaces-mindfulness {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-sacred-spaces-mindfulness {
    flex-direction: column;
  }
  
  .content-text-one-sacred-spaces-mindfulness,
  .content-image-one-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-sacred-spaces-mindfulness {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-two-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-two-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-two-sacred-spaces-mindfulness {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-text-two-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-sacred-spaces-mindfulness {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-sacred-spaces-mindfulness {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-sacred-spaces-mindfulness {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.content-image-two-sacred-spaces-mindfulness {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-two-sacred-spaces-mindfulness {
    flex-direction: column;
  }
  
  .content-image-two-sacred-spaces-mindfulness {
    order: 0;
  }
  
  .content-text-two-sacred-spaces-mindfulness,
  .content-image-two-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.essentials-section-sacred-spaces-mindfulness {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.essentials-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.essentials-header-sacred-spaces-mindfulness {
  text-align: center;
  margin-bottom: 3rem;
}

.essentials-title-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.essentials-subtitle-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.essentials-grid-sacred-spaces-mindfulness {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.essential-card-sacred-spaces-mindfulness {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.essential-card-sacred-spaces-mindfulness:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.essential-icon-sacred-spaces-mindfulness {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

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

.essential-card-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .essential-card-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: none;
  }
}

.practices-section-sacred-spaces-mindfulness {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practices-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practices-content-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practices-text-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-image-sacred-spaces-mindfulness {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-title-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practices-description-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.practices-steps-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practices-step-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.practices-step-number-sacred-spaces-mindfulness {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.practices-step-content-sacred-spaces-mindfulness {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practices-step-title-sacred-spaces-mindfulness {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.practices-step-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.practices-image-sacred-spaces-mindfulness {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .practices-content-sacred-spaces-mindfulness {
    flex-direction: column;
  }
  
  .practices-text-sacred-spaces-mindfulness,
  .practices-image-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-sacred-spaces-mindfulness {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-sacred-spaces-mindfulness {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-box-sacred-spaces-mindfulness {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-title-sacred-spaces-mindfulness {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-sacred-spaces-mindfulness .btn {
  background: #ffffff;
  color: #10b981;
  font-weight: 600;
  padding: 0.75rem 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-box-sacred-spaces-mindfulness .btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.related-section-sacred-spaces-mindfulness {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-sacred-spaces-mindfulness {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-sacred-spaces-mindfulness {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-sacred-spaces-mindfulness {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-sacred-spaces-mindfulness {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-sacred-spaces-mindfulness:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.related-card-image-sacred-spaces-mindfulness {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-sacred-spaces-mindfulness {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-sacred-spaces-mindfulness:hover .related-card-img-sacred-spaces-mindfulness {
  transform: scale(1.05);
}

.related-card-content-sacred-spaces-mindfulness {
  padding: clamp(1.25rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-sacred-spaces-mindfulness {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-sacred-spaces-mindfulness {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-sacred-spaces-mindfulness:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-sacred-spaces-mindfulness {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-sacred-spaces-mindfulness {
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-sacred-spaces-mindfulness .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-sacred-spaces-mindfulness {
  max-width: 800px;
  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: 8px;
}

.disclaimer-title-sacred-spaces-mindfulness {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #10b981;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-sacred-spaces-mindfulness {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-title-sacred-spaces-mindfulness {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Post Page 4 Styles */
.main-natural-materials-wellness-kitchen {
  width: 100%;
}

.hero-section-natural-materials-wellness-kitchen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-natural-materials-wellness-kitchen {
  flex: 1 1 45%;
  max-width: 45%;
}

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

.hero-subtitle-natural-materials-wellness-kitchen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.article-meta-natural-materials-wellness-kitchen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-natural-materials-wellness-kitchen {
  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: #a7f3d0;
}

.meta-badge-natural-materials-wellness-kitchen i {
  color: #10b981;
  font-size: 0.875rem;
}

.hero-stats-natural-materials-wellness-kitchen {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-natural-materials-wellness-kitchen {
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

.hero-image-wrapper-natural-materials-wellness-kitchen {
  flex: 1 1 55%;
  max-width: 55%;
}

.hero-image-natural-materials-wellness-kitchen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

  .hero-text-wrapper-natural-materials-wellness-kitchen,
  .hero-image-wrapper-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-natural-materials-wellness-kitchen {
    gap: 1.5rem;
  }
}

.breadcrumbs-natural-materials-wellness-kitchen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-natural-materials-wellness-kitchen a {
  color: #38bdf8;
  transition: color 0.3s ease;
}

.breadcrumbs-natural-materials-wellness-kitchen a:hover {
  color: #7dd3fc;
}

.breadcrumbs-natural-materials-wellness-kitchen span {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumbs-natural-materials-wellness-kitchen > span:last-child {
  color: #cbd5e1;
}

.introduction-section-natural-materials-wellness-kitchen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-content-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-paragraph-natural-materials-wellness-kitchen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-img-natural-materials-wellness-kitchen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-natural-materials-wellness-kitchen {
    flex-direction: column;
  }

  .introduction-text-natural-materials-wellness-kitchen,
  .introduction-image-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.materials-section-natural-materials-wellness-kitchen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.materials-header-natural-materials-wellness-kitchen {
  text-align: center;
  margin-bottom: 3rem;
}

.materials-tag-natural-materials-wellness-kitchen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.materials-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.materials-subtitle-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

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

.material-card-natural-materials-wellness-kitchen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.material-card-natural-materials-wellness-kitchen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

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

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

.material-card-text-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.design-principles-section-natural-materials-wellness-kitchen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.design-principles-wrapper-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.design-principles-text-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-principles-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.principles-list-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-natural-materials-wellness-kitchen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.principle-number-natural-materials-wellness-kitchen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.principle-text-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.design-principles-image-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-principles-image-img-natural-materials-wellness-kitchen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .design-principles-wrapper-natural-materials-wellness-kitchen {
    flex-direction: column;
  }

  .design-principles-text-natural-materials-wellness-kitchen,
  .design-principles-image-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-item-natural-materials-wellness-kitchen {
    flex-direction: column;
    gap: 0.75rem;
    border-left: none;
    border-top: 4px solid #10b981;
    padding: 1rem;
  }

  .principle-number-natural-materials-wellness-kitchen {
    font-size: 1.75rem;
    min-width: auto;
  }
}

.practical-implementation-section-natural-materials-wellness-kitchen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practical-header-natural-materials-wellness-kitchen {
  text-align: center;
  margin-bottom: 3rem;
}

.practical-tag-natural-materials-wellness-kitchen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.practical-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.practical-wrapper-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-intro-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-quote-natural-materials-wellness-kitchen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-natural-materials-wellness-kitchen {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  opacity: 0.85;
}

.practical-list-natural-materials-wellness-kitchen {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.practical-list-item-natural-materials-wellness-kitchen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.practical-list-item-natural-materials-wellness-kitchen::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.25rem;
}

.practical-list-item-natural-materials-wellness-kitchen strong {
  color: #a7f3d0;
  font-weight: 600;
}

.practical-image-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-img-natural-materials-wellness-kitchen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .practical-wrapper-natural-materials-wellness-kitchen {
    flex-direction: column;
  }

  .practical-text-natural-materials-wellness-kitchen,
  .practical-image-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.wellness-benefits-section-natural-materials-wellness-kitchen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.wellness-header-natural-materials-wellness-kitchen {
  text-align: center;
  margin-bottom: 3rem;
}

.wellness-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.wellness-subtitle-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.benefits-grid-natural-materials-wellness-kitchen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-natural-materials-wellness-kitchen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card-natural-materials-wellness-kitchen:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.benefit-card-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.benefit-card-text-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefit-card-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-natural-materials-wellness-kitchen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-natural-materials-wellness-kitchen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-natural-materials-wellness-kitchen {
  padding: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 2rem;
}

.cta-heading-natural-materials-wellness-kitchen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-text-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.conclusion-cta-natural-materials-wellness-kitchen .btn {
  margin-top: 0;
}

.conclusion-image-natural-materials-wellness-kitchen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-img-natural-materials-wellness-kitchen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-natural-materials-wellness-kitchen {
    flex-direction: column;
  }

  .conclusion-text-natural-materials-wellness-kitchen,
  .conclusion-image-natural-materials-wellness-kitchen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-natural-materials-wellness-kitchen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-natural-materials-wellness-kitchen {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #d97706;
  border: 1px solid #fcd34d;
  border-left: 4px solid #d97706;
}

.disclaimer-icon-natural-materials-wellness-kitchen {
  font-size: 1.5rem;
  color: #d97706;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  margin-top: 0.25rem;
}

.disclaimer-text-natural-materials-wellness-kitchen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #92400e;
  line-height: 1.3;
}

.disclaimer-paragraph-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.6;
}

.related-posts-section-natural-materials-wellness-kitchen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-natural-materials-wellness-kitchen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-natural-materials-wellness-kitchen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

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

.related-card-natural-materials-wellness-kitchen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-natural-materials-wellness-kitchen:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.related-card-image-natural-materials-wellness-kitchen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-natural-materials-wellness-kitchen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-natural-materials-wellness-kitchen:hover .related-card-img-natural-materials-wellness-kitchen {
  transform: scale(1.05);
}

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

.related-card-title-natural-materials-wellness-kitchen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-natural-materials-wellness-kitchen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-natural-materials-wellness-kitchen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.related-card-link-natural-materials-wellness-kitchen:hover {
  color: #059669;
  gap: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
}

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

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

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

/* Post Page 5 Styles */
.main-color-psychology-emotional-balance {
  width: 100%;
}

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

.hero-section-color-psychology-emotional-balance {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-color-psychology-emotional-balance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-color-psychology-emotional-balance a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-color-psychology-emotional-balance a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.breadcrumbs-color-psychology-emotional-balance span {
  color: #64748b;
}

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

.hero-text-block-color-psychology-emotional-balance {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

.article-meta-color-psychology-emotional-balance {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-color-psychology-emotional-balance {
  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: #a7f3d0;
}

.meta-badge-color-psychology-emotional-balance i {
  color: #10b981;
  font-size: 0.875rem;
}

.hero-image-block-color-psychology-emotional-balance {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-image-color-psychology-emotional-balance {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-color-psychology-emotional-balance {
    flex-direction: column;
  }

  .hero-text-block-color-psychology-emotional-balance,
  .hero-image-block-color-psychology-emotional-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-color-psychology-emotional-balance {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-color-psychology-emotional-balance {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-color-psychology-emotional-balance {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-color-psychology-emotional-balance {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro-paragraph-color-psychology-emotional-balance {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.intro-image-color-psychology-emotional-balance {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-color-psychology-emotional-balance {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-color-psychology-emotional-balance {
    flex-direction: column;
  }

  .intro-text-color-psychology-emotional-balance,
  .intro-image-color-psychology-emotional-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-color-psychology-emotional-balance {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-color-psychology-emotional-balance {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-color-psychology-emotional-balance {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title-one-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.section-paragraph-one-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.key-point-box-one-color-psychology-emotional-balance {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-top: 1rem;
}

.key-point-title-one-color-psychology-emotional-balance {
  color: #a7f3d0;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.key-point-list-one-color-psychology-emotional-balance {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-one-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-one-color-psychology-emotional-balance::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.content-image-one-color-psychology-emotional-balance {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-color-psychology-emotional-balance {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-color-psychology-emotional-balance {
    flex-direction: column;
  }

  .content-text-one-color-psychology-emotional-balance,
  .content-image-one-color-psychology-emotional-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-color-psychology-emotional-balance {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-color-psychology-emotional-balance {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-color-psychology-emotional-balance {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-color-psychology-emotional-balance {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.content-text-two-color-psychology-emotional-balance {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title-two-color-psychology-emotional-balance {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.section-paragraph-two-color-psychology-emotional-balance {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.featured-quote-two-color-psychology-emotional-balance {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: clamp(1rem, 2vw, 2rem) 0;
  border-radius: 8px;
}

.quote-text-two-color-psychology-emotional-balance {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-two-color-psychology-emotional-balance {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-two-color-psychology-emotional-balance {
    flex-direction: column;
  }

  .content-image-two-color-psychology-emotional-balance,
  .content-text-two-color-psychology-emotional-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-color-psychology-emotional-balance {
  background: #0d1117;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-color-psychology-emotional-balance {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

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

.process-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.process-steps-color-psychology-emotional-balance {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-step-color-psychology-emotional-balance {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.process-step-color-psychology-emotional-balance:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

.process-step-number-color-psychology-emotional-balance {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-color-psychology-emotional-balance {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.process-step-text-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.features-section-color-psychology-emotional-balance {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-color-psychology-emotional-balance {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

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

.features-title-color-psychology-emotional-balance {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-subtitle-color-psychology-emotional-balance {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-color-psychology-emotional-balance {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.features-card-color-psychology-emotional-balance {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.features-card-color-psychology-emotional-balance:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.features-card-icon-color-psychology-emotional-balance {
  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-color-psychology-emotional-balance {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.features-card-text-color-psychology-emotional-balance {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.content-section-three-color-psychology-emotional-balance {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-color-psychology-emotional-balance {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-color-psychology-emotional-balance {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title-three-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.section-paragraph-three-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.warning-box-three-color-psychology-emotional-balance {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-top: 1rem;
}

.warning-title-three-color-psychology-emotional-balance {
  color: #fca5a5;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.warning-list-three-color-psychology-emotional-balance {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.warning-item-three-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.warning-item-three-color-psychology-emotional-balance::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #fca5a5;
}

.content-image-three-color-psychology-emotional-balance {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-color-psychology-emotional-balance {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-three-color-psychology-emotional-balance {
    flex-direction: column;
  }

  .content-text-three-color-psychology-emotional-balance,
  .content-image-three-color-psychology-emotional-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-color-psychology-emotional-balance {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-color-psychology-emotional-balance {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-color-psychology-emotional-balance {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

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

.cta-box-color-psychology-emotional-balance {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-cta-color-psychology-emotional-balance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-primary-cta-color-psychology-emotional-balance:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-section-color-psychology-emotional-balance {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-color-psychology-emotional-balance {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.related-cards-color-psychology-emotional-balance {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-color-psychology-emotional-balance {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-color-psychology-emotional-balance:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.related-card-image-color-psychology-emotional-balance {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-img-color-psychology-emotional-balance {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-color-psychology-emotional-balance {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-color-psychology-emotional-balance {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-color-psychology-emotional-balance {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
}

.related-link-color-psychology-emotional-balance {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-color-psychology-emotional-balance:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

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

.disclaimer-section-color-psychology-emotional-balance {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-color-psychology-emotional-balance {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-color-psychology-emotional-balance {
  color: #0f172a;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-color-psychology-emotional-balance {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-color-psychology-emotional-balance {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .introduction-section-color-psychology-emotional-balance,
  .content-section-one-color-psychology-emotional-balance,
  .content-section-two-color-psychology-emotional-balance,
  .content-section-three-color-psychology-emotional-balance,
  .process-section-color-psychology-emotional-balance,
  .features-section-color-psychology-emotional-balance,
  .conclusion-section-color-psychology-emotional-balance,
  .related-section-color-psychology-emotional-balance {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-color-psychology-emotional-balance {
    padding: 6rem 0;
  }

  .introduction-section-color-psychology-emotional-balance,
  .content-section-one-color-psychology-emotional-balance,
  .content-section-two-color-psychology-emotional-balance,
  .content-section-three-color-psychology-emotional-balance,
  .process-section-color-psychology-emotional-balance,
  .features-section-color-psychology-emotional-balance,
  .conclusion-section-color-psychology-emotional-balance,
  .related-section-color-psychology-emotional-balance {
    padding: 6rem 0;
  }
}

/* About Page Styles */
.interior-harmony-about {
    font-family: var(--font-body);
    color: var(--color-text-light-primary);
    background: var(--color-bg-light-primary);
    width: 100%;
  }

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

  .heritage-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--color-bg-light-primary);
    position: relative;
    overflow: hidden;
  }

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

  .heritage-title-about {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    line-height: 1.15;
    font-family: var(--font-heading);
  }

  .heritage-subtitle-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
    color: var(--color-primary);
    font-weight: 600;
  }

  .heritage-text-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light-secondary);
    max-width: 700px;
  }

  .heritage-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .heritage-section-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .heritage-content-about {
      gap: clamp(2.5rem, 5vw, 4rem);
    }
  }

  .philosophy-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--color-bg-light-secondary);
    position: relative;
    overflow: hidden;
  }

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

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

  .philosophy-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
  }

  .philosophy-subtitle-about {
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
    color: var(--color-text-light-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

  .philosophy-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .philosophy-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
  }

  .philosophy-card-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

  .philosophy-card-title-about {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .philosophy-card-text-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    color: var(--color-text-light-secondary);
  }

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

  .essence-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--color-bg-light-primary);
    position: relative;
    overflow: hidden;
  }

  .essence-content-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }

  .essence-text-block-about {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .essence-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    font-family: var(--font-heading);
  }

  .essence-text-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light-secondary);
  }

  .essence-highlight-about {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light-primary);
    font-weight: 500;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-primary);
    margin: 1rem 0;
  }

  .essence-image-block-about {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
  }

  .essence-visual-about {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .essence-content-about {
      flex-direction: column;
      gap: 2rem;
    }

    .essence-text-block-about {
      flex: 1 1 100%;
    }

    .essence-image-block-about {
      flex: 1 1 100%;
    }
  }

  .approach-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--color-bg-light-secondary);
    position: relative;
    overflow: hidden;
  }

  .approach-header-about {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  }

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

  .approach-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
  }

  .approach-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 900px;
    margin: 0 auto;
  }

  .approach-step-about {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

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

  .approach-step-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .approach-step-title-about {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .approach-step-text-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    color: var(--color-text-light-secondary);
  }

  @media (max-width: 768px) {
    .approach-step-about {
      flex-direction: column;
      gap: 1rem;
    }

    .approach-step-number-about {
      font-size: 1.75rem;
      min-width: auto;
    }
  }

  .commitment-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--color-bg-light-primary);
    position: relative;
    overflow: hidden;
  }

  .commitment-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 900px;
    margin: 0 auto;
  }

  .commitment-quote-about {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
  }

  .commitment-quote-text-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
    line-height: 1.6;
    color: var(--color-text-light-primary);
    margin-bottom: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
  }

  .commitment-quote-author-about {
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    font-style: normal;
  }

  .commitment-text-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light-secondary);
  }

  .commitment-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .disclaimer-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--color-bg-light-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
  }

  .disclaimer-content-about {
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .disclaimer-icon-about {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light-secondary);
  }

  @media (min-width: 768px) {
    .heritage-section-about {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }

    .philosophy-section-about {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }

    .essence-section-about {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }

    .approach-section-about {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }

    .commitment-section-about {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }
  }

/* Privacy Page Styles */
/* Universal legal pages component */
.harmony-legal {
  width: 100%;
  background: var(--color-bg-light-primary);
}

/* Container for all content */
.harmony-legal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Main content wrapper */
.harmony-legal-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* Header section with title and metadata */
.harmony-legal-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--color-bg-light-tertiary);
}

.harmony-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.harmony-legal-updated {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-tertiary);
  font-style: italic;
}

/* Section styles */
.harmony-legal-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.harmony-legal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.harmony-legal-section p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.harmony-legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
}

.harmony-legal-section li {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Contact section styling */
.harmony-legal-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.harmony-legal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.harmony-legal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.harmony-legal-contact-label {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.harmony-legal-contact-value {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .harmony-legal-header {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .harmony-legal-contact {
    padding: 3rem;
    gap: 2rem;
  }

  .harmony-legal-contact-item {
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .harmony-legal-content {
    gap: 3rem;
  }

  .harmony-legal-header {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .harmony-legal-section {
    gap: 1.5rem;
  }
}

/* Thank You Page Styles */
/* Thank You Page Component */
  .thank-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  /* Thank You Section */
  .thank-section {
    width: 100%;
    background: var(--color-bg-dark-primary);
    padding: clamp(2rem, 8vw, 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(2rem, 5vw, 3rem);
  }

  /* Success Icon */
  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  /* Heading */
  .thank-section h1 {
    color: var(--color-text-dark-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Lead Text */
  .thank-lead {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Description Text */
  .thank-description {
    color: var(--color-text-dark-secondary);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Next Steps Text */
  .thank-next-steps {
    color: var(--color-text-dark-tertiary);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Button Styling */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #000000;
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
  }

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

  .btn-primary:active {
    transform: translateY(0);
  }

  /* Animation for icon */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Tablet Responsive */
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 10vw, 5rem) 0;
      min-height: auto;
    }

    .thank-content {
      gap: clamp(2rem, 5vw, 3rem);
      padding: clamp(3rem, 6vw, 4rem);
    }

    .thank-icon {
      margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
  }

  /* Desktop Responsive */
  @media (min-width: 1024px) {
    .thank-section {
      padding: 6rem 0;
    }

    .thank-content {
      gap: 3rem;
      padding: 4rem;
    }

    .btn-primary:hover {
      box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
    }
  }

  /* Large Desktop */
  @media (min-width: 1440px) {
    .thank-content {
      gap: 3.5rem;
      padding: 5rem;
    }
  }

/* 404 Page Styles */
/* Error Page Wrapper */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Error Section */
.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

/* Decorative Zen Circles */
.zen-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.zen-circle-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  top: -15%;
  right: -10%;
  border: 2px solid var(--color-primary);
  animation: float 8s ease-in-out infinite;
}

.zen-circle-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  bottom: -5%;
  left: -5%;
  border: 2px solid var(--color-secondary);
  animation: float 10s ease-in-out infinite reverse;
}

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

/* Error Code Wrapper */
.error-code-wrapper {
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: clamp(-0.05em, -1vw, -0.1em);
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.error-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-secondary);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Error Heading */
.error-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-dark-primary);
  line-height: 1.3;
  margin: 0;
  max-width: 500px;
}

/* Error Message */
.error-message {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0;
  font-weight: 400;
}

/* Zen Illustration */
.zen-illustration {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  position: relative;
}

.zen-stone {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  position: relative;
  animation: breathe 4s ease-in-out infinite;
}

.zen-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite;
  opacity: 0.5;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    width: 80%;
    height: 80%;
    opacity: 0.8;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}

/* CTA Text */
.error-cta {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-weight: 500;
}

/* Primary Button */
.btn {
  display: inline-block;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Zen Quote */
.zen-quote {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-tertiary);
  font-style: italic;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  max-width: 450px;
  line-height: 1.6;
  font-weight: 400;
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .error-code {
    text-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
  }

  .zen-circle-1 {
    animation: float 10s ease-in-out infinite;
  }

  .zen-circle-2 {
    animation: float 12s ease-in-out infinite reverse;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 2.5rem;
  }

  .error-heading {
    max-width: 600px;
  }

  .error-message {
    max-width: 550px;
  }

  .zen-quote {
    max-width: 500px;
  }

  .btn-primary {
    padding: 1.125rem 2.5rem;
  }

  .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .zen-circle-1 {
    width: 500px;
    height: 500px;
  }

  .zen-circle-2 {
    width: 400px;
    height: 400px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .zen-circle-1,
  .zen-circle-2,
  .zen-stone,
  .zen-ripple,
  .btn-primary {
    animation: none;
    transition: none;
  }
}

/* Print Styles */
@media print {
  .zen-circle,
  .zen-ripple {
    display: none;
  }

  .error-section {
    background: white;
    color: black;
  }

  .error-code {
    color: #000;
  }
}