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

:root {
  /* LIGHT THEME PALETTE - L2: WARM CREAM + TEAL */
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  /* Text colors */
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #92867b;
  
  /* Accent colors */
  --color-primary: #0d9488;
  --color-primary-hover: #059669;
  --color-secondary: #14b8a6;
  --color-accent-light: #ccfbf1;
  
  /* Typography */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 25px rgba(28, 25, 23, 0.12);
  --shadow-xl: 0 20px 40px rgba(28, 25, 23, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography Base Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

a {
  transition: color var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
}

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

/* Section Base Styles */
section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  text-align: center;
  white-space: nowrap;
}

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

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

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

.btn-outline:hover {
  background: var(--color-accent-light);
  border-color: var(--color-primary-hover);
}

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

.btn-secondary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  border: 2px solid #e8dcc8;
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--color-text-primary);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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(13, 148, 136, 0.1);
}

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

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

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

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Card Component */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Badge Component */
.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--color-accent-light);
  color: var(--color-primary);
}

/* Section Padding */
.section-padding-sm {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.section-padding-md {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-padding-lg {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

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

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

.text-muted {
  color: var(--color-text-muted);
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Visibility */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}

/* Animation Utilities */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .no-print {
    display: none;
  }
}

/* Mobile Navigation Toggle */
.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
}

@media (max-width: 767px) {
  .header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.header-aesthetic-studio {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid rgba(29, 25, 23, 0.08);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.header-aesthetic-studio-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header-aesthetic-studio-brand:hover {
  opacity: 0.85;
}

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

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

.header-aesthetic-studio-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-aesthetic-studio-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.header-aesthetic-studio-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

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

.header-aesthetic-studio-nav-link:hover::after {
  width: 100%;
}

.header-aesthetic-studio-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-aesthetic-studio-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.header-aesthetic-studio-cta-button:active {
  transform: translateY(0);
}

.header-aesthetic-studio-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.header-aesthetic-studio-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-aesthetic-studio-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-normal);
  z-index: 99;
  padding-top: clamp(4rem, 12vw, 6rem);
  padding-bottom: 2rem;
  overflow-y: auto;
}

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

.header-aesthetic-studio-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(29, 25, 23, 0.08);
  padding-bottom: 1.5rem;
}

.header-aesthetic-studio-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.header-aesthetic-studio-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color var(--transition-fast);
}

.header-aesthetic-studio-mobile-close:hover {
  color: var(--color-primary);
}

.header-aesthetic-studio-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: 2rem;
  flex: 1;
}

.header-aesthetic-studio-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 1rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-aesthetic-studio-mobile-link:hover {
  background: rgba(13, 148, 136, 0.08);
  color: var(--color-primary);
  padding-left: 1.5rem;
}

.header-aesthetic-studio-mobile-cta {
  display: block;
  width: clamp(200px, 80%, 300px);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.header-aesthetic-studio-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

@media (min-width: 768px) {
  .header-aesthetic-studio-mobile-toggle {
    display: none;
  }

  .header-aesthetic-studio-mobile-menu {
    display: none;
  }

  .header-aesthetic-studio-desktop-nav {
    display: flex;
  }

  .header-aesthetic-studio-cta-button {
    display: inline-block;
  }

  .header-aesthetic-studio-container {
    padding: 1rem clamp(1rem, 4vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .header-aesthetic-studio-logo-img {
    width: 48px;
    height: 48px;
  }

  .header-aesthetic-studio-logo-text {
    font-size: 1.5rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .header-aesthetic-studio-brand,
  .header-aesthetic-studio-nav-link,
  .header-aesthetic-studio-nav-link::after,
  .header-aesthetic-studio-cta-button,
  .header-aesthetic-studio-mobile-toggle,
  .header-aesthetic-studio-mobile-menu,
  .header-aesthetic-studio-mobile-link {
    transition: none;
  }
}

    .design-essence-hub {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-one {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-two {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-orb {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

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

.hero-section-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.hero-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #92867b;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}

.btn-primary:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #0d9488;
  border-color: #0d9488;
}

.btn-secondary:hover {
  background: #ccfbf1;
  border-color: #059669;
  transform: translateY(-3px);
}

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

.about-shape-accent-one {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-accent-two {
  position: absolute;
  bottom: 5%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-element {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-line-decoration {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-floating-panel {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.about-corner-ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom-right, rgba(13, 148, 136, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.about-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #57534e;
  line-height: 1.6;
}

.about-section-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
}

.about-image-block {
  flex: 1 1 350px;
  position: relative;
}

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

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

.principles-mesh-gradient {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-glow-one {
  position: absolute;
  top: 40%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-glow-two {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-shape-element {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 50% 50% 30% 70% / 30% 50% 70% 50%;
  z-index: 1;
  pointer-events: none;
}

.principles-line-separator {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.principles-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.principles-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-section-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.principles-grid {
  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;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.06);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.principles-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(28, 25, 23, 0.12);
}

.principles-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccfbf1;
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

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

.principles-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
}

.learning-path-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.learning-path-glow {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.09) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-one {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-two {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 1;
  pointer-events: none;
}

.learning-path-accent-line {
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.learning-path-floating-element {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 160px;
  height: 120px;
  background: rgba(13, 148, 136, 0.03);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 10px;
  transform: rotate(6deg);
  z-index: 1;
  pointer-events: none;
}

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

.learning-path-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.learning-path-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.learning-path-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.learning-path-section-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.learning-path-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #0d9488;
}

.learning-path-step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.learning-path-step-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1c1917;
}

.learning-path-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
}

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

.featured-articles-mesh {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-articles-glow-one {
  position: absolute;
  bottom: 20%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-articles-glow-two {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-articles-shape-accent {
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-articles-line {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-articles-ornament {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: rgba(13, 148, 136, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.featured-articles-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.featured-articles-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-articles-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-articles-section-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.featured-articles-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(28, 25, 23, 0.15);
}

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

.featured-articles-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

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

.featured-articles-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #57534e;
  line-height: 1.6;
}

.featured-articles-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.featured-articles-card-link:hover {
  color: #059669;
  gap: 0.75rem;
}

.featured-articles-cta {
  text-align: center;
}

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

.inspiration-gradient-field {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.09) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-accent-glow {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-shape-one {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 70% 30% 40% 60% / 40% 40% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.inspiration-shape-two {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 50% 50% 30% 70% / 30% 50% 70% 50%;
  z-index: 1;
  pointer-events: none;
}

.inspiration-line-element {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.inspiration-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: flex-start;
}

.inspiration-quote-block {
  flex: 1 1 350px;
}

.inspiration-quote-text {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
  background: #f8fafc;
  margin: 0;
  border-radius: 8px;
}

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

.inspiration-quote-text cite {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #92867b;
  font-style: normal;
  display: block;
}

.inspiration-info-block {
  flex: 1 1 350px;
}

.inspiration-info-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.inspiration-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.inspiration-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #0d9488;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.inspiration-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inspiration-benefit-title {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: #1c1917;
}

.inspiration-benefit-description {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #57534e;
  line-height: 1.6;
}

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

.contact-section-mesh-gradient {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-section-glow-primary {
  position: absolute;
  bottom: 15%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-section-glow-secondary {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-section-shape-accent {
  position: absolute;
  bottom: -40px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-section-floating-element {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 150px;
  height: 120px;
  background: rgba(13, 148, 136, 0.03);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 10px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}

.contact-section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.contact-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-section-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
}

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

.contact-section-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.contact-section-label {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  color: #1c1917;
}

.contact-section-input,
.contact-section-textarea {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #1c1917;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.contact-section-input:focus,
.contact-section-textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.contact-section-submit {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1rem);
  background: #0d9488;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section-submit:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.contact-section-privacy {
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  color: #92867b;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-section-privacy-link {
  color: #0d9488;
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-section-privacy-link:hover {
  color: #059669;
  text-decoration: underline;
}

.contact-section-info {
  flex: 1 1 400px;
}

.contact-section-info-block {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.06);
}

.contact-section-info-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.contact-section-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-section-faq-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.contact-section-faq-question {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: #1c1917;
}

.contact-section-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.95rem);
  color: #57534e;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1c1917;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner-text {
  color: #e5e7eb;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 0.95rem);
  flex: 1 1 200px;
  min-width: 250px;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8125rem, 1vw, 0.95rem);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 300ms ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #0d9488;
  color: #ffffff;
}

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

.cookie-btn-decline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(229, 231, 235, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(229, 231, 235, 0.6);
}

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

  .contact-section-content {
    flex-direction: column;
  }

  .learning-path-step {
    gap: 1rem;
  }

  .learning-path-step-number {
    min-width: 50px;
    font-size: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    min-width: auto;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    justify-content: space-around;
  }

  .principles-grid,
  .featured-articles-cards {
    flex-direction: column;
  }

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

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

/* Decorative elements */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: space-between;
}

/* Footer sections */
.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

/* About section */
.footer-about {
  flex: 1 1 300px;
  max-width: 320px;
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Navigation section */
.footer-navigation {
  flex: 1 1 200px;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

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

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

/* Contact section */
.footer-contact {
  flex: 1 1 240px;
}

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
}

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

/* Legal section */
.footer-legal {
  flex: 1 1 200px;
}

.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

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

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

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
  margin: clamp(2rem, 4vw, 2.5rem) 0;
  grid-column: 1 / -1;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

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

/* Responsive - Tablet */
@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  }

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

  .footer-section {
    flex: 1 1 100%;
    max-width: none;
  }

  .footer-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .footer-divider {
    margin: clamp(1.5rem, 3vw, 2rem) 0;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .footer::before,
  .footer::after {
    display: none;
  }

  .footer-contact-item {
    gap: 0.375rem;
  }

  .footer-nav-links,
  .footer-legal-links {
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
}

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

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

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

/* Category Page Styles */
/* Category Page Component Styles */
.main.category-page-stylish-rooms {
  background: #fffbeb;
  color: #1c1917;
}

/* ===== HERO SECTION ===== */
.hero-section-stylish-rooms {
  background: #fef3c7;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.hero-deco-glow-1 {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-subtitle-stylish-rooms {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

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

.stat-number-stylish-rooms {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.stat-label-stylish-rooms {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #92867b;
  font-weight: 500;
}

.hero-cta-stylish-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-cta-stylish-rooms {
    flex-direction: row;
  }
}

.hero-cta-stylish-rooms .btn {
  min-width: 200px;
}

/* ===== POSTS SECTION ===== */
.posts-section-stylish-rooms {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.posts-header-stylish-rooms {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.posts-tag-stylish-rooms {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.posts-subtitle-stylish-rooms {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

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

.card-stylish-rooms {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f3e8db;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-stylish-rooms:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.12);
  border-color: #ddd6cc;
}

.card-image-stylish-rooms {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.card-title-stylish-rooms {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  margin: 0;
}

.card-description-stylish-rooms {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.card-meta-stylish-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3e8db;
}

.card-meta-item-stylish-rooms {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #92867b;
  font-weight: 500;
}

.card-meta-item-stylish-rooms i {
  color: #0d9488;
  font-size: 0.875rem;
}

.card-link-stylish-rooms {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #0d9488;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.card-link-stylish-rooms:hover {
  color: #059669;
  transform: translateX(4px);
}

/* ===== INSPIRATION SECTION ===== */
.inspiration-section-stylish-rooms {
  background: #fef3c7;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.inspiration-deco-1 {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.inspiration-deco-2 {
  position: absolute;
  bottom: 5%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.inspiration-content-stylish-rooms {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.inspiration-title-stylish-rooms {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 3rem;
  text-align: center;
}

.principles-list-stylish-rooms {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-item-stylish-rooms {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  transition: all 0.3s ease;
}

.principle-item-stylish-rooms:hover {
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
  transform: translateX(4px);
}

.principle-number-stylish-rooms {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.principle-content-stylish-rooms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-heading-stylish-rooms {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  margin: 0;
}

.principle-text-stylish-rooms {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .principle-item-stylish-rooms {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.quote-deco-accent {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.quote-content-stylish-rooms {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-stylish-rooms {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #0d9488;
  background: #fffbeb;
  border-radius: 8px;
  margin: 0;
}

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

.quote-author-stylish-rooms {
  font-size: 0.95rem;
  color: #92867b;
  font-style: normal;
  font-weight: 500;
}

/* ===== RESOURCES SECTION ===== */
.resources-section-stylish-rooms {
  background: #fef3c7;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.resources-deco-1 {
  position: absolute;
  top: 5%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.resources-deco-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.resources-content-stylish-rooms {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.resources-title-stylish-rooms {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: 1rem;
}

.resources-intro-stylish-rooms {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.resource-card-stylish-rooms {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f3e8db;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card-stylish-rooms:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
  border-color: #ddd6cc;
}

.resource-icon-stylish-rooms {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 1.75rem;
}

.resource-card-title-stylish-rooms {
  font-size: clamp(1.025rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  margin: 0;
}

.resource-card-text-stylish-rooms {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

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

  .posts-section-stylish-rooms {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .card-stylish-rooms {
    flex: 1 1 350px;
  }

  .inspiration-section-stylish-rooms {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .quote-section-stylish-rooms {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .resources-section-stylish-rooms {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

@media (min-width: 1024px) {
  .card-stylish-rooms {
    flex: 1 1 380px;
    max-width: 450px;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}

.btn-primary:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
}

.btn-outline {
  background: transparent;
  color: #0d9488;
  border-color: #0d9488;
}

.btn-outline:hover {
  background: rgba(13, 148, 136, 0.08);
  border-color: #059669;
  color: #059669;
}

/* Focus States */
.btn:focus-visible,
.card-link-stylish-rooms:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 3px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Post Page 1 Styles */
.main-minimalist-bedroom-design {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.hero-section-minimalist-bedroom-design {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.breadcrumbs-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-minimalist-bedroom-design a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-minimalist-bedroom-design a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-minimalist-bedroom-design span {
  color: #92867b;
}

.breadcrumbs-minimalist-bedroom-design a:last-child {
  color: #57534e;
}

.hero-content-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-minimalist-bedroom-design {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-minimalist-bedroom-design {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-title-minimalist-bedroom-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-minimalist-bedroom-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.6;
  font-weight: 500;
}

.hero-meta-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-minimalist-bedroom-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-badge-minimalist-bedroom-design i {
  color: #0d9488;
}

.hero-stats-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item-minimalist-bedroom-design {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-minimalist-bedroom-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.stat-label-minimalist-bedroom-design {
  font-size: 0.875rem;
  color: #92867b;
  font-weight: 500;
}

.hero-image-minimalist-bedroom-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

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

  .hero-text-block-minimalist-bedroom-design,
  .hero-image-block-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-minimalist-bedroom-design {
    gap: 1.5rem;
  }
}

.intro-section-minimalist-bedroom-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-wrapper-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-minimalist-bedroom-design {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-image-minimalist-bedroom-design {
  flex: 1 1 400px;
  max-width: 600px;
}

.intro-title-minimalist-bedroom-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.intro-description-minimalist-bedroom-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.intro-image-minimalist-bedroom-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

@media (max-width: 768px) {
  .intro-wrapper-minimalist-bedroom-design {
    flex-direction: column;
  }

  .intro-text-minimalist-bedroom-design,
  .intro-image-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-minimalist-bedroom-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-header-minimalist-bedroom-design {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-minimalist-bedroom-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.15);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.principles-title-minimalist-bedroom-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-minimalist-bedroom-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-minimalist-bedroom-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-step-minimalist-bedroom-design {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.principle-number-minimalist-bedroom-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.principle-content-minimalist-bedroom-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-minimalist-bedroom-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
}

.principle-text-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
}

.implementation-section-minimalist-bedroom-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-wrapper-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-text-minimalist-bedroom-design {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.implementation-image-minimalist-bedroom-design {
  flex: 1 1 400px;
  max-width: 600px;
}

.implementation-title-minimalist-bedroom-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.implementation-description-minimalist-bedroom-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.highlight-box-minimalist-bedroom-design {
  background: #ccfbf1;
  border-left: 4px solid #0d9488;
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-text-minimalist-bedroom-design {
  color: #1c1917;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.implementation-image-minimalist-bedroom-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

@media (max-width: 768px) {
  .implementation-wrapper-minimalist-bedroom-design {
    flex-direction: column;
  }

  .implementation-text-minimalist-bedroom-design,
  .implementation-image-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.details-section-minimalist-bedroom-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.details-wrapper-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.details-image-minimalist-bedroom-design {
  flex: 1 1 400px;
  max-width: 600px;
  order: -1;
}

.details-text-minimalist-bedroom-design {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.details-title-minimalist-bedroom-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.details-description-minimalist-bedroom-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.details-image-minimalist-bedroom-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.featured-quote-minimalist-bedroom-design {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: #ffffff;
  margin: 1.5rem 0;
  border-radius: 8px;
}

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

.quote-author-minimalist-bedroom-design {
  font-size: 0.875rem;
  color: #92867b;
  font-style: normal;
}

@media (max-width: 768px) {
  .details-wrapper-minimalist-bedroom-design {
    flex-direction: column;
  }

  .details-image-minimalist-bedroom-design,
  .details-text-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.techniques-section-minimalist-bedroom-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.techniques-title-minimalist-bedroom-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-cards-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.technique-card-minimalist-bedroom-design {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
  border: 1px solid #e8dcc8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card-minimalist-bedroom-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

.technique-number-minimalist-bedroom-design {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d9488;
}

.technique-card-title-minimalist-bedroom-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
}

.technique-card-text-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .technique-card-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-minimalist-bedroom-design {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-wrapper-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-minimalist-bedroom-design {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.conclusion-image-minimalist-bedroom-design {
  flex: 1 1 400px;
  max-width: 600px;
}

.conclusion-title-minimalist-bedroom-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.conclusion-description-minimalist-bedroom-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.cta-box-minimalist-bedroom-design {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
}

.cta-title-minimalist-bedroom-design {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-minimalist-bedroom-design .btn {
  background: #ffffff;
  color: #0d9488;
  border-color: #ffffff;
}

.cta-box-minimalist-bedroom-design .btn:hover {
  background: #f0f0f0;
}

.conclusion-image-minimalist-bedroom-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

@media (max-width: 768px) {
  .conclusion-wrapper-minimalist-bedroom-design {
    flex-direction: column;
  }

  .conclusion-text-minimalist-bedroom-design,
  .conclusion-image-minimalist-bedroom-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-minimalist-bedroom-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-minimalist-bedroom-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-minimalist-bedroom-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 2rem;
}

.related-cards-minimalist-bedroom-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-minimalist-bedroom-design {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-minimalist-bedroom-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

.related-card-image-minimalist-bedroom-design {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-minimalist-bedroom-design {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-minimalist-bedroom-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
}

.related-card-text-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

.related-card-link-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-minimalist-bedroom-design:hover {
  color: #059669;
  text-decoration: underline;
}

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

.disclaimer-section-minimalist-bedroom-design {
  background: #fef3c7;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-minimalist-bedroom-design {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.disclaimer-title-minimalist-bedroom-design {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-minimalist-bedroom-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-minimalist-bedroom-design:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-minimalist-bedroom-design {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 768px) {
  .principles-section-minimalist-bedroom-design,
  .details-section-minimalist-bedroom-design,
  .techniques-section-minimalist-bedroom-design {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

/* Post Page 2 Styles */
/* Main Component Wrapper */
.main-lighting-design-essentials {
  width: 100%;
  background: #fffbeb;
}

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

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

.hero-content-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-lighting-design-essentials {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-lighting-design-essentials {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-meta-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-lighting-design-essentials {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-lighting-design-essentials i {
  font-size: 0.875rem;
}

.hero-image-wrapper-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-lighting-design-essentials {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.15);
}

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

.stat-item-lighting-design-essentials {
  text-align: center;
  flex: 0 1 auto;
}

.stat-number-lighting-design-essentials {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-lighting-design-essentials {
  display: block;
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

.breadcrumbs-lighting-design-essentials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-lighting-design-essentials {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-lighting-design-essentials:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-lighting-design-essentials {
  color: #92867b;
}

.breadcrumb-current-lighting-design-essentials {
  color: #57534e;
  font-weight: 500;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.introduction-section-lighting-design-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-img-lighting-design-essentials {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.1);
}

/* ============================================
   FUNDAMENTALS SECTION
   ============================================ */
.fundamentals-section-lighting-design-essentials {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.section-header-lighting-design-essentials {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-lighting-design-essentials {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fundamentals-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.principles-wrapper-lighting-design-essentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-lighting-design-essentials {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.06);
  transition: all 0.3s ease;
}

.principle-item-lighting-design-essentials:hover {
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.12);
  transform: translateY(-2px);
}

.principle-number-lighting-design-essentials {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  min-width: 60px;
}

.principle-content-lighting-design-essentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-lighting-design-essentials {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1c1917;
}

.principle-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
}

/* ============================================
   COLOR TEMPERATURE SECTION
   ============================================ */
.color-temperature-section-lighting-design-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.color-temp-wrapper-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.color-temp-text-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.color-temp-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.color-temp-paragraph-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.color-temp-image-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.color-temp-img-lighting-design-essentials {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.1);
}

/* ============================================
   IMPLEMENTATION SECTION
   ============================================ */
.implementation-section-lighting-design-essentials {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-text-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-step-title-lighting-design-essentials {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.implementation-text-paragraph-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-image-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-img-lighting-design-essentials {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.1);
}

.featured-quote-lighting-design-essentials {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: #fef3c7;
  border-radius: 4px;
}

.quote-text-lighting-design-essentials {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.quote-author-lighting-design-essentials {
  font-size: 0.875rem;
  color: #57534e;
  font-style: normal;
}

/* ============================================
   ADVANCED TECHNIQUES SECTION
   ============================================ */
.advanced-techniques-section-lighting-design-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-wrapper-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.techniques-image-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.techniques-img-lighting-design-essentials {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.1);
}

.techniques-text-lighting-design-essentials {
  flex: 1 1 300px;
  min-width: 280px;
}

.techniques-step-title-lighting-design-essentials {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.techniques-text-paragraph-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   PRACTICAL TIPS SECTION
   ============================================ */
.practical-tips-section-lighting-design-essentials {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.tips-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.tips-subtitle-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tips-cards-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 3rem;
}

.tips-card-lighting-design-essentials {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.06);
  transition: all 0.3s ease;
}

.tips-card-lighting-design-essentials:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
}

.tips-card-number-lighting-design-essentials {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.tips-card-title-lighting-design-essentials {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1c1917;
}

.tips-card-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
}

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

.conclusion-content-lighting-design-essentials {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta-box-lighting-design-essentials {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-lighting-design-essentials {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-lighting-design-essentials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: #0d9488;
  border: 2px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary-lighting-design-essentials:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */
.related-posts-section-lighting-design-essentials {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.related-title-lighting-design-essentials {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.related-subtitle-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.related-cards-lighting-design-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 3rem;
}

.related-card-lighting-design-essentials {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.06);
  transition: all 0.3s ease;
}

.related-card-lighting-design-essentials:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
}

.related-card-image-lighting-design-essentials {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-lighting-design-essentials {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
}

.related-card-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.6;
}

.related-card-link-lighting-design-essentials {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-lighting-design-essentials:hover {
  color: #059669;
  text-decoration: underline;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section-lighting-design-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
}

.disclaimer-content-lighting-design-essentials {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-lighting-design-essentials {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-lighting-design-essentials {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.8;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-content-lighting-design-essentials,
  .intro-content-lighting-design-essentials,
  .color-temp-wrapper-lighting-design-essentials,
  .implementation-wrapper-lighting-design-essentials,
  .techniques-wrapper-lighting-design-essentials {
    flex-direction: column;
  }

  .hero-text-wrapper-lighting-design-essentials,
  .hero-image-wrapper-lighting-design-essentials,
  .intro-text-lighting-design-essentials,
  .intro-image-lighting-design-essentials,
  .color-temp-text-lighting-design-essentials,
  .color-temp-image-lighting-design-essentials,
  .implementation-text-lighting-design-essentials,
  .implementation-image-lighting-design-essentials,
  .techniques-text-lighting-design-essentials,
  .techniques-image-lighting-design-essentials {
    flex: 1 1 100%;
  }

  .principle-item-lighting-design-essentials {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-lighting-design-essentials {
    min-width: auto;
    margin-bottom: 0.5rem;
  }

  .related-card-lighting-design-essentials {
    flex: 1 1 100%;
    max-width: none;
  }

  .tips-card-lighting-design-essentials {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tips-cards-lighting-design-essentials {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .tips-card-lighting-design-essentials {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-cards-lighting-design-essentials {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .related-card-lighting-design-essentials {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .tips-card-lighting-design-essentials {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .related-card-lighting-design-essentials {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

/* Post Page 3 Styles */
/* Main Component */
.main-japanese-color-theory {
  width: 100%;
  background: #fffbeb;
  color: #1c1917;
  font-family: var(--font-primary);
}

/* ========== HERO SECTION ========== */
.hero-section-japanese-color-theory {
  background: #fffbeb;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-japanese-color-theory {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.hero-subtitle-japanese-color-theory {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.6;
}

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

.meta-badge-japanese-color-theory {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fef3c7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1c1917;
}

.meta-badge-japanese-color-theory i {
  color: #0d9488;
}

.hero-image-japanese-color-theory {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
}

@media (max-width: 768px) {
  .hero-content-japanese-color-theory {
    flex-direction: column;
  }
  
  .hero-text-block-japanese-color-theory,
  .hero-image-block-japanese-color-theory {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-japanese-color-theory {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs-japanese-color-theory {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  color: #57534e;
}

.breadcrumbs-japanese-color-theory a {
  color: #0d9488;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-japanese-color-theory a:hover {
  color: #059669;
  text-decoration: underline;
}

/* ========== INTRODUCTION SECTION ========== */
.introduction-section-japanese-color-theory {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.intro-description-japanese-color-theory {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.intro-image-japanese-color-theory {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.1);
}

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

/* ========== COLORS MEANING SECTION ========== */
.colors-meaning-section-japanese-color-theory {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.section-header-japanese-color-theory {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-tag-japanese-color-theory {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section-subtitle-japanese-color-theory {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.colors-grid-japanese-color-theory {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.color-card-japanese-color-theory {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.color-card-japanese-color-theory:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
}

.color-swatch-japanese-color-theory {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background-color: var(--color-hex);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-card-title-japanese-color-theory {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1917;
}

.color-card-text-japanese-color-theory {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #57534e;
}

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

/* ========== APPLICATION SECTION ========== */
.application-section-japanese-color-theory {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.application-content-japanese-color-theory {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-text-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.application-image-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.application-description-japanese-color-theory {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.application-steps-japanese-color-theory {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.step-item-japanese-color-theory {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fef3c7;
  border-radius: 8px;
}

.step-number-japanese-color-theory {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-japanese-color-theory {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-japanese-color-theory {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1917;
}

.step-text-japanese-color-theory {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

.application-image-japanese-color-theory {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

/* ========== SEASONAL COLORS SECTION ========== */
.seasonal-colors-section-japanese-color-theory {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.seasonal-header-japanese-color-theory {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.seasonal-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.seasonal-subtitle-japanese-color-theory {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
}

.seasonal-content-japanese-color-theory {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.seasonal-text-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seasonal-image-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
}

.seasonal-description-japanese-color-theory {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.seasonal-image-japanese-color-theory {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

/* ========== MODERN APPLICATION SECTION ========== */
.modern-application-section-japanese-color-theory {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.modern-content-japanese-color-theory {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.modern-image-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
}

.modern-text-block-japanese-color-theory {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.modern-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.modern-description-japanese-color-theory {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.modern-features-japanese-color-theory {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.feature-item-japanese-color-theory {
  padding: 1rem;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
}

.feature-title-japanese-color-theory {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.feature-text-japanese-color-theory {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

.modern-image-japanese-color-theory {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

/* ========== CONCLUSION SECTION ========== */
.conclusion-section-japanese-color-theory {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-japanese-color-theory {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.conclusion-text-japanese-color-theory {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.conclusion-quote-japanese-color-theory {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
  background: #ffffff;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  text-align: left;
}

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

.quote-author-japanese-color-theory {
  font-size: 0.875rem;
  color: #57534e;
  font-style: normal;
}

.conclusion-cta-japanese-color-theory {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-cta-japanese-color-theory {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-primary-cta-japanese-color-theory:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

/* ========== DISCLAIMER SECTION ========== */
.disclaimer-section-japanese-color-theory {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid #e8dcc8;
  overflow: hidden;
}

.disclaimer-content-japanese-color-theory {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-japanese-color-theory {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.disclaimer-text-japanese-color-theory {
  font-size: 0.875rem;
  color: #57534e;
  line-height: 1.7;
}

/* ========== RELATED POSTS SECTION ========== */
.related-posts-section-japanese-color-theory {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-header-japanese-color-theory {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.related-title-japanese-color-theory {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  font-family: var(--font-heading);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-japanese-color-theory {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
}

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

.related-post-card-japanese-color-theory {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-post-card-japanese-color-theory:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
}

.related-post-image-japanese-color-theory {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-post-content-japanese-color-theory {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-post-title-japanese-color-theory {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
}

.related-post-excerpt-japanese-color-theory {
  font-size: 0.875rem;
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link-japanese-color-theory {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.related-post-link-japanese-color-theory:hover {
  color: #059669;
}

@media (max-width: 768px) {
  .related-post-card-japanese-color-theory {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (min-width: 768px) {
  .hero-section-japanese-color-theory {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .introduction-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .colors-meaning-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .application-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .seasonal-colors-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .modern-application-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .conclusion-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .related-posts-section-japanese-color-theory {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-japanese-color-theory {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .introduction-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .colors-meaning-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .application-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .seasonal-colors-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .modern-application-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .conclusion-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .related-posts-section-japanese-color-theory {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

/* Post Page 4 Styles */
.main-home-office-aesthetics {
  width: 100%;
  background: #fffbeb;
}

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

.hero-section-home-office-aesthetics {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.hero-content-home-office-aesthetics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-home-office-aesthetics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-link-home-office-aesthetics {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-home-office-aesthetics:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-home-office-aesthetics {
  color: #c9a961;
}

.breadcrumb-current-home-office-aesthetics {
  color: #57534e;
}

.hero-title-home-office-aesthetics {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-home-office-aesthetics {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.7;
  max-width: 700px;
}

.hero-meta-home-office-aesthetics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.meta-badge-home-office-aesthetics {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-home-office-aesthetics i {
  font-size: 0.9rem;
}

.hero-image-home-office-aesthetics {
  width: 100%;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.featured-image-home-office-aesthetics {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

.hero-stats-home-office-aesthetics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
}

.stat-item-home-office-aesthetics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-home-office-aesthetics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.stat-label-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  font-weight: 500;
}

.introduction-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.introduction-wrapper-home-office-aesthetics {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-image-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-home-office-aesthetics {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
}

.introduction-paragraph-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.introduction-image-element-home-office-aesthetics {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

@media (max-width: 768px) {
  .introduction-wrapper-home-office-aesthetics {
    flex-direction: column;
  }
  
  .introduction-text-home-office-aesthetics,
  .introduction-image-home-office-aesthetics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.principles-header-home-office-aesthetics {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-home-office-aesthetics {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.principles-title-home-office-aesthetics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-home-office-aesthetics {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-home-office-aesthetics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.principles-step-home-office-aesthetics {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.principles-step-number-home-office-aesthetics {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.principles-step-title-home-office-aesthetics {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
}

.principles-step-text-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
}

.implementation-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #fef3c7;
  overflow: hidden;
}

.implementation-wrapper-home-office-aesthetics {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-image-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-home-office-aesthetics {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
}

.implementation-paragraph-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.implementation-image-element-home-office-aesthetics {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.featured-quote-home-office-aesthetics {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
  background: #ffffff;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

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

.quote-author-home-office-aesthetics {
  font-size: 0.875rem;
  color: #92867b;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .implementation-wrapper-home-office-aesthetics {
    flex-direction: column;
  }
  
  .implementation-text-home-office-aesthetics,
  .implementation-image-home-office-aesthetics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.elements-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.elements-header-home-office-aesthetics {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.elements-title-home-office-aesthetics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.elements-subtitle-home-office-aesthetics {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.elements-cards-home-office-aesthetics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.elements-card-home-office-aesthetics {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e8dcc8;
  transition: all 0.3s ease;
}

.elements-card-home-office-aesthetics:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

.elements-card-icon-home-office-aesthetics {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 10px;
  font-size: 1.5rem;
}

.elements-card-title-home-office-aesthetics {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
}

.elements-card-text-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .elements-card-home-office-aesthetics {
    flex: 1 1 100%;
    max-width: none;
  }
}

.styling-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.styling-wrapper-home-office-aesthetics {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.styling-text-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.styling-image-home-office-aesthetics {
  flex: 1 1 50%;
  max-width: 50%;
}

.styling-title-home-office-aesthetics {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
}

.styling-paragraph-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.styling-tips-home-office-aesthetics {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8dcc8;
}

.styling-tips-title-home-office-aesthetics {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
}

.styling-tips-list-home-office-aesthetics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.styling-tip-item-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  list-style: disc;
}

.styling-image-element-home-office-aesthetics {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

@media (max-width: 768px) {
  .styling-wrapper-home-office-aesthetics {
    flex-direction: column;
  }
  
  .styling-text-home-office-aesthetics,
  .styling-image-home-office-aesthetics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.conclusion-content-home-office-aesthetics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-home-office-aesthetics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.conclusion-paragraph-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.conclusion-cta-home-office-aesthetics {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.conclusion-cta-title-home-office-aesthetics {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: #ffffff;
  color: #0d9488;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: #f0fdfa;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.related-section-home-office-aesthetics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #fef3c7;
  overflow: hidden;
}

.related-header-home-office-aesthetics {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-home-office-aesthetics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-home-office-aesthetics {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-home-office-aesthetics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-home-office-aesthetics {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-home-office-aesthetics:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
}

.related-card-image-home-office-aesthetics {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-home-office-aesthetics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-home-office-aesthetics:hover .related-card-image-home-office-aesthetics img {
  transform: scale(1.05);
}

.related-card-content-home-office-aesthetics {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-home-office-aesthetics {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
}

.related-card-text-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-card-home-office-aesthetics {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-home-office-aesthetics {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f9fafb;
  overflow: hidden;
  border-top: 1px solid #e8dcc8;
}

.disclaimer-content-home-office-aesthetics {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-home-office-aesthetics {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-home-office-aesthetics {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-home-office-aesthetics:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section-home-office-aesthetics {
    padding: 2rem 0;
  }
  
  .introduction-section-home-office-aesthetics,
  .principles-section-home-office-aesthetics,
  .implementation-section-home-office-aesthetics,
  .elements-section-home-office-aesthetics,
  .styling-section-home-office-aesthetics,
  .conclusion-section-home-office-aesthetics,
  .related-section-home-office-aesthetics {
    padding: 2.5rem 0;
  }
  
  .principles-step-home-office-aesthetics {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .principles-step-number-home-office-aesthetics {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .hero-stats-home-office-aesthetics {
    flex-direction: column;
  }
  
  .stat-item-home-office-aesthetics {
    width: 100%;
  }
}

/* Post Page 5 Styles */
/* Main component wrapper */
.main-dining-space-design {
  width: 100%;
}

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

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

.breadcrumbs-dining-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-dining-space-design a {
  color: #0d9488;
  transition: color 0.2s ease;
}

.breadcrumbs-dining-space-design a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-dining-space-design span {
  color: #92867b;
}

.hero-content-dining-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-dining-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-dining-space-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.15;
}

.hero-subtitle-dining-space-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.6;
}

.hero-meta-dining-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-dining-space-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.hero-image-block-dining-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-dining-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.15);
}

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

  .hero-text-block-dining-space-design,
  .hero-image-block-dining-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Intro Section */
.intro-section-dining-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.intro-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
}

.intro-description-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

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

.intro-image-img-dining-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
}

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

  .intro-text-dining-space-design,
  .intro-image-dining-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Concept Section */
.concept-section-dining-space-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.concept-section-dining-space-design .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.concept-header-dining-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.concept-tag-dining-space-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.15);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.concept-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.concept-steps-dining-space-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-step-dining-space-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.concept-step-number-dining-space-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.concept-step-title-dining-space-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1c1917;
}

.concept-step-text-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .concept-step-dining-space-design {
    flex-direction: column;
  }
}

/* Materials Section */
.materials-section-dining-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.materials-section-dining-space-design .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.materials-text-dining-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.materials-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
}

.materials-description-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.materials-list-dining-space-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.material-item-dining-space-design {
  padding: 1rem;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.material-name-dining-space-design {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.material-desc-dining-space-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

.materials-image-dining-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.materials-image-img-dining-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.15);
}

@media (max-width: 768px) {
  .materials-wrapper-dining-space-design {
    flex-direction: column;
  }

  .materials-text-dining-space-design,
  .materials-image-dining-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Layout Section */
.layout-section-dining-space-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.layout-section-dining-space-design .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.layout-image-dining-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.layout-image-img-dining-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.15);
}

.layout-text-dining-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.layout-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
}

.layout-description-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.layout-tips-dining-space-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.layout-tip-dining-space-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
  padding: 0.75rem 0;
}

@media (max-width: 768px) {
  .layout-wrapper-dining-space-design {
    flex-direction: column;
  }

  .layout-image-dining-space-design,
  .layout-text-dining-space-design {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

/* Lighting Section */
.lighting-section-dining-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.lighting-section-dining-space-design .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.lighting-header-dining-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.lighting-tag-dining-space-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.15);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lighting-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.lighting-subtitle-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.lighting-cards-dining-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.lighting-card-dining-space-design {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
  border: 1px solid #e8dcc8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lighting-card-dining-space-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.1);
}

.lighting-card-icon-dining-space-design {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

.lighting-card-title-dining-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
}

.lighting-card-text-dining-space-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
}

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

/* Atmosphere Section */
.atmosphere-section-dining-space-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.atmosphere-section-dining-space-design .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-dining-space-design {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
  background: #ffffff;
  border-radius: 8px;
  margin: 2rem 0 3rem 0;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.08);
}

.quote-text-dining-space-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.quote-author-dining-space-design {
  font-size: 0.9375rem;
  color: #92867b;
  font-style: normal;
}

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

.atmosphere-text-dining-space-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.atmosphere-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
}

.atmosphere-description-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.atmosphere-image-dining-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.atmosphere-image-img-dining-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.15);
}

@media (max-width: 768px) {
  .featured-quote-dining-space-design {
    margin: 1.5rem 0 2rem 0;
  }

  .atmosphere-wrapper-dining-space-design {
    flex-direction: column;
  }

  .atmosphere-text-dining-space-design,
  .atmosphere-image-dining-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Conclusion Section */
.conclusion-section-dining-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.conclusion-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
}

.conclusion-text-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
}

.conclusion-cta-dining-space-design {
  margin-top: 1.5rem;
  display: flex;
}

.btn-cta-dining-space-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-cta-dining-space-design:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

/* Related Section */
.related-section-dining-space-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-dining-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-dining-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.related-subtitle-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
}

.related-cards-dining-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.related-card-dining-space-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.12);
}

.related-card-image-dining-space-design {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-dining-space-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-card-content-dining-space-design {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-dining-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
}

.related-card-text-dining-space-design {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-dining-space-design {
  font-size: 0.9375rem;
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.related-card-link-dining-space-design:hover {
  color: #059669;
  text-decoration: underline;
}

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

/* Disclaimer Section */
.disclaimer-section-dining-space-design {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e8dcc8;
  overflow: hidden;
}

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

.disclaimer-content-dining-space-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-dining-space-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-dining-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.disclaimer-text-dining-space-design:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-meta-dining-space-design {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Utility classes */
.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* Accessibility */
a:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* About Page Styles */
:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #92867b;
  --color-primary: #0d9488;
  --color-primary-hover: #059669;
  --color-secondary: #14b8a6;
  --color-accent-light: #ccfbf1;
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 25px rgba(28, 25, 23, 0.12);
  --shadow-xl: 0 20px 40px rgba(28, 25, 23, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

.stylish-rooms-about {
  width: 100%;
}

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

section, [class*="-section-about"] {
  width: 100%;
}

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

.hero-design-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.hero-design-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-design-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.hero-design-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.journey-milestone-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.milestone-wrapper-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.milestone-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.milestone-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.milestone-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.milestone-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.timeline-items-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.timeline-item-about {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.timeline-year-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 80px;
  line-height: 1.1;
}

.timeline-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.timeline-milestone-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.timeline-detail-about {
  font-size: clamp(0.875rem, 1vw + 0.125rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.approach-essence-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-container-about {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.approach-intro-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.approach-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.approach-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #f3e8dc;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.principle-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.principle-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.principle-name-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.principle-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.design-philosophy-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.value-block-about {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2rem);
}

.value-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.value-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.philosophy-statement-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  max-width: 750px;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
}

.philosophy-quote-about {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.philosophy-attribution-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  font-style: normal;
}

.impact-vision-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.impact-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.impact-intro-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.impact-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.impact-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

.impact-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.impact-feature-about {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.impact-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.impact-feature-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.impact-feature-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.impact-vision-box-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vision-heading-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vision-text-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0e4d6;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fffaf5;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-item-about {
    gap: 1rem;
  }

  .timeline-year-about {
    min-width: 70px;
  }

  .principle-card-about,
  .impact-feature-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-design-content-about {
    gap: 3rem;
  }

  .principle-card-about {
    flex: 1 1 300px;
  }

  .impact-feature-about {
    flex: 1 1 280px;
  }
}

@media (min-width: 1024px) {
  .approach-container-about {
    gap: 4rem;
  }

  .philosophy-values-about {
    gap: 2rem;
  }
}

/* Privacy Page Styles */
.docs-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-tertiary);
}

.docs-hub section {
  width: 100%;
  overflow: hidden;
}

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

/* Hero section */
.hero-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 900px;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.hero-section-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section p {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 800px;
}

/* Content sections */
.content-section {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #f0ede8;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.content-section ul,
.content-section ol {
  margin-left: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-secondary);
}

.content-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.content-section strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Contact section */
.contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid #f0ede8;
}

.contact-item-label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-primary);
}

.contact-item-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

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

  .contact-item {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
  }

  .contact-item-label {
    min-width: 80px;
    flex-shrink: 0;
  }
}

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

  .content-section {
    padding: 5rem 0;
  }

  .contact-section {
    padding: 5rem 0;
  }
}

/* Thank You Page Styles */
.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.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;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  display: block;
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.5;
}

.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-primary:active {
  transform: translateY(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: 4rem 0;
  }
  
  .thank-content {
    gap: 2rem;
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  .thank-section {
    min-height: 100vh;
    padding: 6rem 0;
  }
  
  .thank-content {
    gap: 2.5rem;
  }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  .thank-section {
    min-height: 100vh;
  }
}

/* 404 Page Styles */
/* Main error page component */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error section */
.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: var(--space-lg) 0;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Error code styling */
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw + 1rem, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  text-shadow: 
    3px 3px 0px rgba(13, 148, 136, 0.1),
    6px 6px 0px rgba(13, 148, 136, 0.05);
  letter-spacing: -0.05em;
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Error title */
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin: clamp(0.5rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  line-height: 1.2;
  animation: fadeInUp 0.7s ease 0.15s both;
}

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

/* Error subtitle */
.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: clamp(0.5rem, 1.5vw, 1rem) 0;
  line-height: 1.6;
  font-weight: 600;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* Error description */
.error-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: clamp(1rem, 2vw, 1.5rem) auto;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.45s both;
}

/* Error wrapper */
.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

/* Action button */
.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.7s ease 0.6s both;
  border: 2px solid var(--color-primary);
}

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

.error-btn:active {
  transform: translateY(0);
}

.error-btn i {
  font-size: 1.1em;
}

/* Suggestions section */
.error-suggestions {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  max-width: 450px;
  width: 100%;
  animation: fadeInUp 0.7s ease 0.75s both;
  backdrop-filter: blur(10px);
}

.suggestions-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 1rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.suggestions-list i {
  color: var(--color-primary);
  font-size: 1.1em;
  flex-shrink: 0;
}

/* Decorative icons */
.error-decoration {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-1 {
  top: 10%;
  left: 5%;
  font-size: clamp(3rem, 10vw, 6rem);
  animation-delay: 0s;
}

.error-decoration-2 {
  top: 70%;
  right: 5%;
  font-size: clamp(3.5rem, 12vw, 7rem);
  animation-delay: 1s;
}

.error-decoration-3 {
  top: 40%;
  right: 10%;
  font-size: clamp(2.5rem, 8vw, 5rem);
  animation-delay: 2s;
}

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

.error-decoration i {
  display: block;
  color: var(--color-primary);
}

/* Floating shapes */
.error-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  animation: drift 8s linear infinite;
}

.error-shape-1 {
  width: clamp(100px, 20vw, 300px);
  height: clamp(100px, 20vw, 300px);
  background: var(--color-primary);
  top: 15%;
  right: 15%;
  animation-duration: 12s;
}

.error-shape-2 {
  width: clamp(80px, 15vw, 250px);
  height: clamp(80px, 15vw, 250px);
  background: var(--color-secondary);
  bottom: 20%;
  left: 10%;
  animation-duration: 10s;
  animation-delay: 2s;
}

.error-shape-3 {
  width: clamp(60px, 12vw, 200px);
  height: clamp(60px, 12vw, 200px);
  background: var(--color-accent-light);
  top: 50%;
  left: 5%;
  animation-duration: 14s;
  animation-delay: 4s;
}

@keyframes drift {
  0%, 100% {
    transform: translateX(0px) translateY(0px);
  }
  25% {
    transform: translateX(30px) translateY(-30px);
  }
  50% {
    transform: translateX(0px) translateY(-60px);
  }
  75% {
    transform: translateX(-30px) translateY(-30px);
  }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-suggestions {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }

  .error-decoration-1 {
    top: 15%;
    left: 8%;
  }

  .error-decoration-2 {
    top: 65%;
    right: 8%;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 0;
  }

  .error-content {
    min-height: 100vh;
  }

  .error-code {
    text-shadow: 
      5px 5px 0px rgba(13, 148, 136, 0.15),
      10px 10px 0px rgba(13, 148, 136, 0.08);
  }

  .error-btn {
    font-size: 1.0625rem;
  }

  .error-decoration-1 {
    font-size: 7rem;
  }

  .error-decoration-2 {
    font-size: 8rem;
  }

  .error-decoration-3 {
    font-size: 5.5rem;
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 
      6px 6px 0px rgba(13, 148, 136, 0.15),
      12px 12px 0px rgba(13, 148, 136, 0.08);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-title,
  .error-subtitle,
  .error-description,
  .error-btn,
  .error-suggestions,
  .error-decoration,
  .error-shape {
    animation: none;
  }

  .error-btn {
    transition: none;
  }
}

/* Focus states for keyboard navigation */
.error-btn:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .error-code {
    text-shadow: 
      2px 2px 0px var(--color-text-primary),
      4px 4px 0px var(--color-text-primary);
  }

  .error-btn {
    border-width: 3px;
  }

  .error-suggestions {
    border-width: 3px;
    background: rgba(255, 255, 255, 0.8);
  }
}