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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #1e293b;
  --color-bg-quaternary: #f8fafc;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-accent-warm: #ec4899;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-primary-dark);
}

.section-dark p {
  color: var(--color-text-secondary-dark);
}

.section-dark a {
  color: var(--color-primary);
}

.section-dark a:hover {
  color: var(--color-primary-hover);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-primary-light);
}

.section-light p {
  color: var(--color-text-secondary-light);
}

.section-light a {
  color: var(--color-primary);
}

.section-light a:hover {
  color: var(--color-primary-hover);
}

.section-dark-tertiary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-dark-tertiary h1,
.section-dark-tertiary h2,
.section-dark-tertiary h3,
.section-dark-tertiary h4,
.section-dark-tertiary h5,
.section-dark-tertiary h6 {
  color: var(--color-text-primary-dark);
}

.section-dark-tertiary p {
  color: var(--color-text-secondary-dark);
}

.section-light-secondary {
  background: var(--color-bg-quaternary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-light-secondary h1,
.section-light-secondary h2,
.section-light-secondary h3,
.section-light-secondary h4,
.section-light-secondary h5,
.section-light-secondary h6 {
  color: var(--color-text-primary-light);
}

.section-light-secondary p {
  color: var(--color-text-secondary-light);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.card-light {
  background: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  color: var(--color-text-primary-light);
}

.card-light:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.card-light h3,
.card-light h4 {
  color: var(--color-text-primary-light);
}

.card-light p {
  color: var(--color-text-secondary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.hero {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 10vw, 4rem);
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-lg);
}

.hero .btn {
  margin-top: var(--space-md);
}

.feature-box {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-box-dark {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-primary-dark);
}

.feature-box-dark h4 {
  color: var(--color-text-primary-dark);
}

.feature-box-dark p {
  color: var(--color-text-secondary-dark);
}

.feature-box-light {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-primary-light);
}

.feature-box-light h4 {
  color: var(--color-text-primary-light);
}

.feature-box-light p {
  color: var(--color-text-secondary-light);
}

.feature-box:hover {
  transform: translateX(4px);
}

.icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.icon-light {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

.badge-light {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.list {
  list-style: none;
}

.list-item {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.list-item::before {
  content: '';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quote {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.8;
}

.quote-dark {
  background: rgba(16, 185, 129, 0.05);
  color: var(--color-text-secondary-dark);
}

.quote-light {
  background: var(--color-primary-light);
  color: var(--color-text-primary-light);
}

.quote-author {
  margin-top: var(--space-md);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  margin: var(--space-2xl) 0;
}

.divider-light {
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

.form-input::placeholder {
  color: var(--color-text-muted-light);
}

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

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

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

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

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

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

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

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero {
    min-height: 500px;
    padding: var(--space-2xl) 0;
  }
  
  .section-dark,
  .section-light,
  .section-dark-tertiary,
  .section-light-secondary {
    padding: var(--space-2xl) 0;
  }
  
  .hero::before {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -20%;
  }
  
  .hero::after {
    width: 300px;
    height: 300px;
    bottom: -15%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .flex {
    flex-direction: column;
  }
  
  .feature-box,
  .card {
    padding: var(--space-md);
  }
  
  .grid {
    gap: var(--space-md);
  }
  
  .hero {
    min-height: 400px;
    padding: var(--space-xl) 0;
  }
}

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

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 var(--radius-lg) 0;
}

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

@media print {
  body {
    background: white;
    color: black;
  }
  
  .btn,
  .no-print {
    display: none;
  }
}
.header-gratitude-beacon {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  position: static;
  z-index: 999;
  overflow: hidden;
}

.header-gratitude-beacon-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-gratitude-beacon-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-gratitude-beacon-brand:hover {
  opacity: 0.85;
}

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

.header-gratitude-beacon-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

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

.header-gratitude-beacon-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

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

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

.header-gratitude-beacon-nav-link:hover::after {
  width: 100%;
}

.header-gratitude-beacon-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-gratitude-beacon-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.header-gratitude-beacon-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-gratitude-beacon-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-gratitude-beacon-mobile-toggle:hover {
  opacity: 0.8;
}

.header-gratitude-beacon-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 998;
  border-left: 1px solid rgba(16, 185, 129, 0.1);
}

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

.header-gratitude-beacon-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  height: 70px;
}

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

.header-gratitude-beacon-mobile-close:hover {
  opacity: 0.7;
}

.header-gratitude-beacon-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
}

.header-gratitude-beacon-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(16, 185, 129, 0.05);
  transition: all var(--transition-base);
}

.header-gratitude-beacon-mobile-link:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-gratitude-beacon-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  transition: all var(--transition-base);
}

.header-gratitude-beacon-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-gratitude-beacon-container {
    height: 80px;
  }

  .header-gratitude-beacon-desktop-nav {
    display: flex;
  }

  .header-gratitude-beacon-cta-button {
    display: inline-block;
  }

  .header-gratitude-beacon-mobile-toggle {
    display: none;
  }

  .header-gratitude-beacon-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header-gratitude-beacon-container {
    height: 85px;
    gap: 2rem;
  }

  .header-gratitude-beacon-logo-text {
    font-size: 1.5rem;
  }

  .header-gratitude-beacon-desktop-nav {
    gap: 2.5rem;
  }

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

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

    .gratitude-portal {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 2;
}

.hero-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  max-width: 650px;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-buttons-index .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: #10b981;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-index {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-index:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid #e2e8f0;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #10b981;
  font-family: 'Playfair Display', serif;
}

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

.benefits-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.benefits-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

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

.benefit-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.benefit-icon-index {
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-card-title-index {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.benefit-card-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.featured-posts-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-posts-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.featured-posts-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.featured-posts-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.featured-posts-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.card-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.featured-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-card-index:hover .featured-card-image-index {
  transform: scale(1.05);
}

.featured-card-body-index {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.featured-card-title-index {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.featured-card-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.featured-card-link-index {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-block;
  margin-top: var(--space-sm);
}

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

.featured-posts-footer-index {
  text-align: center;
  margin-top: var(--space-lg);
}

.testimonials-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.testimonials-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.testimonials-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.testimonial-quote-index {
  flex-grow: 1;
}

.testimonial-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid #e2e8f0;
  padding-top: var(--space-md);
}

.testimonial-name-index {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.how-it-works-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.how-it-works-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.how-it-works-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.steps-container-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.step-item-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-index {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.step-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.principles-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.principles-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.principles-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.principles-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

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

.principle-item-index {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.principle-icon-index {
  width: 56px;
  height: 56px;
  background: #d1fae5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.75rem;
  margin: 0 auto;
  flex-shrink: 0;
}

.principle-title-index {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.principle-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.faq-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.faq-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.faq-subtitle-index {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-index {
  flex: 1 1 350px;
  max-width: 500px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.faq-question-index {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.5;
}

.faq-answer-index {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.cta-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin: 0;
  font-weight: 700;
}

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.cta-box-index .btn {
  align-self: center;
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #f1f5f9;
}

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
  }

  .hero-buttons-index .btn {
    width: 100%;
  }

  .hero-stats-index {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .steps-container-index {
    gap: var(--space-xl);
  }

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

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

  .principles-grid-index,
  .benefits-grid-index,
  .testimonials-grid-index,
  .featured-cards-index,
  .faq-grid-index {
    gap: var(--space-md);
  }

  .benefit-card-index,
  .featured-card-index,
  .testimonial-card-index,
  .principle-item-index,
  .faq-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cookie-banner-index {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .cookie-banner-text-index {
    text-align: center;
    min-width: auto;
    flex: 1 1 100%;
  }

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .cta-box-index {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-title-index {
    font-size: 1.75rem;
  }

  .hero-subtitle-index {
    font-size: 0.9rem;
  }

  .benefits-title-index,
  .featured-posts-title-index,
  .testimonials-title-index,
  .how-it-works-title-index,
  .principles-title-index,
  .faq-title-index {
    font-size: 1.5rem;
  }

  .stat-number-index {
    font-size: 1.25rem;
  }

  .stat-label-index {
    font-size: 0.75rem;
  }

  .hero-stats-index {
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    min-width: 100px;
  }
}

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

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

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

.footer-about {
  display: block;
}

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

.footer-about p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 520px;
}

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

.footer-nav,
.footer-contact {
  flex: 1 1 200px;
  min-width: 160px;
}

.footer-nav h3,
.footer-contact h3 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-contact p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.7;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-legal {
  display: block;
}

.footer-legal h3 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.footer-legal-list li {
  display: block;
}

.footer-legal-list a {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.footer-legal-list a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(203, 213, 225, 0.1);
}

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.9rem);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .footer-content {
    gap: clamp(2rem, 5vw, 2.5rem);
  }

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

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

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

  .footer-legal-list li {
    display: block;
  }

  .footer-copyright {
    text-align: center;
  }
}

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

  .footer-about p {
    font-size: 0.875rem;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.5rem;
  }
}
    

.category-page-gratitude-positive-psychology {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-gratitude {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-gratitude::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-gratitude::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content-gratitude {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-wrapper-gratitude {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-title-gratitude {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-gratitude {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #10b981;
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.hero-description-gratitude {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-visual-gratitude {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-gratitude {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.posts-header-gratitude {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-gratitude {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.posts-subtitle-gratitude {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.card-gratitude {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-gratitude:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.card-image-gratitude {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-title-gratitude {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem) 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-description-gratitude {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem) 0;
  line-height: 1.7;
  flex-grow: 1;
}

.card-meta-gratitude {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid #f1f5f9;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: #64748b;
}

.card-time-gratitude,
.card-level-gratitude,
.card-date-gratitude {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-time-gratitude i,
.card-level-gratitude i,
.card-date-gratitude i {
  color: #10b981;
  font-size: 0.9em;
}

.card-link-gratitude {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.benefits-section-gratitude {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-section-gratitude::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-content-gratitude {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.benefits-header-gratitude {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-title-gratitude {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.benefits-intro-gratitude {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0;
}

.benefits-list-gratitude {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-item-gratitude {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item-gratitude:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateX(4px);
}

.benefit-icon-gratitude {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.benefit-name-gratitude {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.benefit-text-gratitude {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.practices-section-gratitude {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.practices-header-gratitude {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.practices-title-gratitude {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.practices-intro-gratitude {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.practices-list-gratitude {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.practice-item-gratitude {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.practice-item-gratitude[open] {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.practice-question-gratitude {
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.practice-question-gratitude:hover {
  background: #f8fafc;
  color: #10b981;
}

.practice-item-gratitude[open] .practice-question-gratitude {
  background: #f0fdf4;
  color: #10b981;
}

.practice-question-gratitude::after {
  content: '+';
  margin-left: auto;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  font-weight: 700;
}

.practice-item-gratitude[open] .practice-question-gratitude::after {
  transform: rotate(45deg);
}

.practice-answer-gratitude {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
  background: #f0fdf4;
  border-top: 1px solid #e2e8f0;
  animation: slideDown 0.3s ease-out;
}

.practice-answer-text-gratitude {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

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

@media (max-width: 768px) {
  .hero-content-gratitude {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-visual-gratitude {
    flex: 1 1 100%;
  }

  .hero-text-wrapper-gratitude {
    flex: 1 1 100%;
  }

  .posts-grid-gratitude {
    flex-direction: column;
    align-items: stretch;
  }

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

  .benefits-list-gratitude {
    flex-direction: column;
  }

  .benefit-item-gratitude {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-section-gratitude {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-section-gratitude::before {
    width: 300px;
    height: 300px;
    top: -20%;
  }

  .hero-section-gratitude::after {
    width: 250px;
    height: 250px;
  }

  .posts-section-gratitude,
  .benefits-section-gratitude,
  .practices-section-gratitude {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .card-meta-gratitude {
    flex-direction: column;
    gap: 0.5rem;
  }

  .practice-question-gratitude {
    font-size: 0.95rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-positive-psychologie-grundlagen {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-positive-psychologie-grundlagen {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-positive-psychologie-grundlagen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: #64748b;
}

.breadcrumbs-positive-psychologie-grundlagen a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}

.breadcrumbs-positive-psychologie-grundlagen a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-positive-psychologie-grundlagen span {
  color: #cbd5e1;
}

.hero-content-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-positive-psychologie-grundlagen {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-weight: 500;
}

.meta-item-positive-psychologie-grundlagen {
  color: #64748b;
}

.meta-divider-positive-psychologie-grundlagen {
  color: #cbd5e1;
}

.hero-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-subtitle-positive-psychologie-grundlagen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: #475569;
  margin: 0;
  max-width: 700px;
}

.hero-image-positive-psychologie-grundlagen {
  margin-top: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.hero-img-positive-psychologie-grundlagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-section-positive-psychologie-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
}

.intro-img-positive-psychologie-grundlagen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.foundations-section-positive-psychologie-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-content-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundations-text-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.foundations-paragraph-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.foundations-list-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-positive-psychologie-grundlagen {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-number-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #10b981;
  flex-shrink: 0;
  min-width: 50px;
}

.list-content-positive-psychologie-grundlagen {
  flex: 1;
}

.list-title-positive-psychologie-grundlagen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.list-text-positive-psychologie-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

.foundations-image-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-img-positive-psychologie-grundlagen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.gratitude-section-positive-psychologie-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.gratitude-content-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.gratitude-image-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.gratitude-img-positive-psychologie-grundlagen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.gratitude-text-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.gratitude-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.gratitude-paragraph-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.gratitude-highlight-positive-psychologie-grundlagen {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #10b981;
  background: #d1fae5;
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-style: italic;
  color: #0f172a;
  margin: 0;
  line-height: 1.7;
}

.practice-section-positive-psychologie-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.practice-cards-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.practice-card-positive-psychologie-grundlagen {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.card-number-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #10b981;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.card-title-positive-psychologie-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
}

.card-text-positive-psychologie-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.card-img-positive-psychologie-grundlagen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  max-height: 300px;
}

.science-section-positive-psychologie-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.science-content-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.science-text-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.science-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.science-paragraph-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.science-stats-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.stat-box-positive-psychologie-grundlagen {
  background: #d1fae5;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.stat-number-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.stat-label-positive-psychologie-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #0f172a;
  margin: 0;
  line-height: 1.6;
}

.science-image-positive-psychologie-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.science-img-positive-psychologie-grundlagen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.conclusion-section-positive-psychologie-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-positive-psychologie-grundlagen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.conclusion-text-positive-psychologie-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.conclusion-cta-positive-psychologie-grundlagen {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-positive-psychologie-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.cta-text-positive-psychologie-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.cta-link-positive-psychologie-grundlagen {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #10b981;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 150ms ease;
}

.cta-link-positive-psychologie-grundlagen:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

.disclaimer-section-positive-psychologie-grundlagen {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-positive-psychologie-grundlagen {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-positive-psychologie-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.disclaimer-text-positive-psychologie-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

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

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

.related-title-positive-psychologie-grundlagen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.related-cards-positive-psychologie-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-positive-psychologie-grundlagen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  border: 1px solid #e2e8f0;
}

.related-card-positive-psychologie-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-image-positive-psychologie-grundlagen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-positive-psychologie-grundlagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-positive-psychologie-grundlagen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-positive-psychologie-grundlagen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-positive-psychologie-grundlagen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.related-link-positive-psychologie-grundlagen {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: color 150ms ease;
}

.related-link-positive-psychologie-grundlagen:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .intro-content-positive-psychologie-grundlagen,
  .foundations-content-positive-psychologie-grundlagen,
  .gratitude-content-positive-psychologie-grundlagen,
  .science-content-positive-psychologie-grundlagen {
    flex-direction: column;
  }

  .intro-text-positive-psychologie-grundlagen,
  .intro-image-positive-psychologie-grundlagen,
  .foundations-text-positive-psychologie-grundlagen,
  .foundations-image-positive-psychologie-grundlagen,
  .gratitude-text-positive-psychologie-grundlagen,
  .gratitude-image-positive-psychologie-grundlagen,
  .science-text-positive-psychologie-grundlagen,
  .science-image-positive-psychologie-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-positive-psychologie-grundlagen {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .breadcrumbs-positive-psychologie-grundlagen {
    font-size: 0.75rem;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .hero-title-positive-psychologie-grundlagen {
    font-size: 1.75rem;
  }

  .hero-subtitle-positive-psychologie-grundlagen {
    font-size: 1rem;
  }

  .intro-section-positive-psychologie-grundlagen,
  .foundations-section-positive-psychologie-grundlagen,
  .gratitude-section-positive-psychologie-grundlagen,
  .science-section-positive-psychologie-grundlagen,
  .practice-section-positive-psychologie-grundlagen,
  .conclusion-section-positive-psychologie-grundlagen,
  .disclaimer-section-positive-psychologie-grundlagen,
  .related-section-positive-psychologie-grundlagen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .practice-card-positive-psychologie-grundlagen {
    padding: 1rem;
  }

  .related-cards-positive-psychologie-grundlagen {
    flex-direction: column;
  }

  .related-card-positive-psychologie-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .list-number-positive-psychologie-grundlagen {
    min-width: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title-positive-psychologie-grundlagen {
    font-size: 1.5rem;
  }

  .hero-meta-positive-psychologie-grundlagen {
    font-size: 0.75rem;
  }

  .intro-title-positive-psychologie-grundlagen,
  .foundations-title-positive-psychologie-grundlagen,
  .gratitude-title-positive-psychologie-grundlagen,
  .science-title-positive-psychologie-grundlagen,
  .practice-title-positive-psychologie-grundlagen,
  .conclusion-title-positive-psychologie-grundlagen,
  .related-title-positive-psychologie-grundlagen {
    font-size: 1.4rem;
  }

  .practice-card-positive-psychologie-grundlagen {
    padding: 0.75rem;
  }

  .card-number-positive-psychologie-grundlagen {
    font-size: 1.5rem;
  }

  .breadcrumbs-positive-psychologie-grundlagen {
    flex-wrap: wrap;
  }
}

.main-dankbarkeitstagebuch-starten {
width: 100%;
overflow-x: hidden;
}

.hero-section-dankbarkeitstagebuch-starten {
background: #0a0f1e;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
position: relative;
}

.hero-section-dankbarkeitstagebuch-starten::before {
content: '';
position: absolute;
top: -40%;
right: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.hero-section-dankbarkeitstagebuch-starten::after {
content: '';
position: absolute;
bottom: -20%;
left: -5%;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.breadcrumbs-dankbarkeitstagebuch-starten {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.75rem, 1vw, 0.9rem);
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.breadcrumbs-dankbarkeitstagebuch-starten a {
color: #10b981;
text-decoration: none;
transition: color 200ms ease;
font-weight: 500;
}

.breadcrumbs-dankbarkeitstagebuch-starten a:hover {
color: #059669;
text-decoration: underline;
}

.breadcrumbs-dankbarkeitstagebuch-starten span {
color: #64748b;
}

.hero-content-dankbarkeitstagebuch-starten {
position: relative;
z-index: 2;
max-width: 700px;
margin-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 7vw, 3.5rem);
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-dankbarkeitstagebuch-starten {
font-size: clamp(1rem, 2vw, 1.25rem);
color: #cbd5e1;
line-height: 1.6;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-dankbarkeitstagebuch-starten {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
font-size: clamp(0.875rem, 1vw, 0.95rem);
}

.meta-item-dankbarkeitstagebuch-starten {
color: #94a3b8;
}

.meta-divider-dankbarkeitstagebuch-starten {
color: #64748b;
}

.hero-image-container-dankbarkeitstagebuch-starten {
position: relative;
z-index: 2;
max-width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image-dankbarkeitstagebuch-starten {
width: 100%;
height: auto;
max-height: 500px;
object-fit: cover;
display: block;
}

.introduction-section-dankbarkeitstagebuch-starten {
background: #ffffff;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

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

.introduction-text-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
}

.introduction-image-container-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.introduction-image-dankbarkeitstagebuch-starten {
width: 100%;
height: auto;
object-fit: cover;
display: block;
max-height: 400px;
}

.introduction-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #0f172a;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.introduction-paragraph-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.introduction-wrapper-dankbarkeitstagebuch-starten {
flex-direction: column;
}

.introduction-text-dankbarkeitstagebuch-starten,
.introduction-image-container-dankbarkeitstagebuch-starten {
flex: 1 1 100%;
max-width: 100%;
}
}

.steps-section-dankbarkeitstagebuch-starten {
background: #1e293b;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.steps-content-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

.steps-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #ffffff;
text-align: center;
word-wrap: break-word;
overflow-wrap: break-word;
}

.steps-intro-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #cbd5e1;
text-align: center;
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}

.steps-wrapper-dankbarkeitstagebuch-starten {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.step-card-dankbarkeitstagebuch-starten {
flex: 1 1 280px;
max-width: 320px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(16, 185, 129, 0.2);
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
transition: all 250ms ease;
}

.step-card-dankbarkeitstagebuch-starten:hover {
transform: translateY(-4px);
border-color: #10b981;
background: rgba(16, 185, 129, 0.08);
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.step-number-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 6vw, 3.5rem);
font-weight: 800;
color: #10b981;
line-height: 1;
}

.step-title-dankbarkeitstagebuch-starten {
font-size: clamp(1.1rem, 2vw, 1.3rem);
font-weight: 700;
color: #ffffff;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #cbd5e1;
line-height: 1.7;
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-section-dankbarkeitstagebuch-starten {
background: #f8fafc;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.practice-wrapper-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: flex-start;
}

.practice-image-container-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.practice-image-dankbarkeitstagebuch-starten {
width: 100%;
height: auto;
object-fit: cover;
display: block;
max-height: 400px;
}

.practice-text-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
}

.practice-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #0f172a;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-paragraph-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-list-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-dankbarkeitstagebuch-starten {
display: flex;
gap: clamp(0.75rem, 2vw, 1.25rem);
align-items: flex-start;
}

.list-marker-dankbarkeitstagebuch-starten {
color: #10b981;
font-weight: 700;
font-size: 1.25rem;
flex-shrink: 0;
margin-top: 2px;
}

.list-content-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #475569;
line-height: 1.7;
word-wrap: break-word;
overflow-wrap: break-word;
}

.list-bold-dankbarkeitstagebuch-starten {
color: #0f172a;
font-weight: 600;
}

.practice-note-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #64748b;
margin-top: clamp(1rem, 2vw, 1.5rem);
font-style: italic;
line-height: 1.6;
}

@media (max-width: 768px) {
.practice-wrapper-dankbarkeitstagebuch-starten {
flex-direction: column;
}

.practice-image-container-dankbarkeitstagebuch-starten,
.practice-text-dankbarkeitstagebuch-starten {
flex: 1 1 100%;
max-width: 100%;
}
}

.habits-section-dankbarkeitstagebuch-starten {
background: #ffffff;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.habits-content-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

.habits-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #0f172a;
text-align: center;
word-wrap: break-word;
overflow-wrap: break-word;
}

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

.habits-card-dankbarkeitstagebuch-starten {
flex: 1 1 280px;
max-width: 320px;
background: #f8fafc;
border: 1px solid #e2e8f0;
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
transition: all 250ms ease;
}

.habits-card-dankbarkeitstagebuch-starten:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
border-color: #10b981;
}

.card-icon-dankbarkeitstagebuch-starten {
width: 48px;
height: 48px;
background: #d1fae5;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: #10b981;
flex-shrink: 0;
}

.card-title-dankbarkeitstagebuch-starten {
font-size: clamp(1.05rem, 2vw, 1.25rem);
font-weight: 700;
color: #0f172a;
word-wrap: break-word;
overflow-wrap: break-word;
}

.card-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #475569;
line-height: 1.7;
word-wrap: break-word;
overflow-wrap: break-word;
}

.challenges-section-dankbarkeitstagebuch-starten {
background: #0a0f1e;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.challenges-wrapper-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.challenges-text-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
}

.challenges-image-container-dankbarkeitstagebuch-starten {
flex: 1 1 50%;
max-width: 50%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.challenges-image-dankbarkeitstagebuch-starten {
width: 100%;
height: auto;
object-fit: cover;
display: block;
max-height: 400px;
}

.challenges-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #ffffff;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.challenges-intro-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #cbd5e1;
line-height: 1.8;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.challenges-highlight-dankbarkeitstagebuch-starten {
background: rgba(16, 185, 129, 0.1);
border-left: 4px solid #10b981;
padding: clamp(1rem, 2vw, 1.5rem);
border-radius: 8px;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #cbd5e1;
line-height: 1.7;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.challenges-wrapper-dankbarkeitstagebuch-starten {
flex-direction: column;
}

.challenges-text-dankbarkeitstagebuch-starten,
.challenges-image-container-dankbarkeitstagebuch-starten {
flex: 1 1 100%;
max-width: 100%;
}
}

.conclusion-section-dankbarkeitstagebuch-starten {
background: #f8fafc;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.conclusion-content-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.conclusion-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #0f172a;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #475569;
line-height: 1.8;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-cta-dankbarkeitstagebuch-starten {
margin-top: clamp(1rem, 2vw, 2rem);
}

.btn-conclusion-dankbarkeitstagebuch-starten {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 2rem;
background: #10b981;
color: #ffffff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: clamp(0.9rem, 1.5vw, 1rem);
transition: all 250ms ease;
}

.btn-conclusion-dankbarkeitstagebuch-starten:hover {
background: #059669;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-dankbarkeitstagebuch-starten {
background: #ffffff;
padding: clamp(2rem, 8vw, 4rem) 0;
border-top: 1px solid #e2e8f0;
overflow: hidden;
}

.disclaimer-content-dankbarkeitstagebuch-starten {
background: #f8fafc;
border-left: 4px solid #64748b;
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 8px;
max-width: 800px;
margin: 0 auto;
}

.disclaimer-title-dankbarkeitstagebuch-starten {
font-size: clamp(1.05rem, 2vw, 1.25rem);
font-weight: 700;
color: #0f172a;
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #475569;
line-height: 1.8;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-section-dankbarkeitstagebuch-starten {
background: #1e293b;
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
}

.related-content-dankbarkeitstagebuch-starten {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-title-dankbarkeitstagebuch-starten {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
color: #ffffff;
text-align: center;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-subtitle-dankbarkeitstagebuch-starten {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #cbd5e1;
text-align: center;
line-height: 1.6;
}

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

.related-card-dankbarkeitstagebuch-starten {
flex: 1 1 300px;
max-width: 360px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(16, 185, 129, 0.2);
border-radius: 12px;
overflow: hidden;
transition: all 250ms ease;
display: flex;
flex-direction: column;
}

.related-card-dankbarkeitstagebuch-starten:hover {
transform: translateY(-4px);
border-color: #10b981;
background: rgba(16, 185, 129, 0.08);
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.related-image-dankbarkeitstagebuch-starten {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-img-dankbarkeitstagebuch-starten {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-info-dankbarkeitstagebuch-starten {
padding: clamp(1.25rem, 2vw, 1.75rem);
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-dankbarkeitstagebuch-starten {
font-size: clamp(1.05rem, 2vw, 1.2rem);
font-weight: 700;
color: #ffffff;
line-height: 1.4;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-card-text-dankbarkeitstagebuch-starten {
font-size: clamp(0.85rem, 1.5vw, 0.95rem);
color: #cbd5e1;
line-height: 1.6;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-link-dankbarkeitstagebuch-starten {
font-size: clamp(0.9rem, 1.5vw, 1rem);
color: #10b981;
text-decoration: none;
font-weight: 600;
transition: color 200ms ease;
}

.related-link-dankbarkeitstagebuch-starten:hover {
color: #059669;
text-decoration: underline;
}

@media (max-width: 768px) {
.hero-section-dankbarkeitstagebuch-starten {
padding: clamp(1.5rem, 6vw, 3rem) 0;
}

.hero-image-container-dankbarkeitstagebuch-starten {
max-height: 350px;
}

.hero-image-dankbarkeitstagebuch-starten {
max-height: 350px;
}

.introduction-section-dankbarkeitstagebuch-starten,
.practice-section-dankbarkeitstagebuch-starten,
.habits-section-dankbarkeitstagebuch-starten,
.challenges-section-dankbarkeitstagebuch-starten,
.conclusion-section-dankbarkeitstagebuch-starten,
.disclaimer-section-dankbarkeitstagebuch-starten,
.related-section-dankbarkeitstagebuch-starten {
padding: clamp(1.5rem, 6vw, 3rem) 0;
}

.steps-wrapper-dankbarkeitstagebuch-starten {
flex-direction: column;
align-items: stretch;
}

.step-card-dankbarkeitstagebuch-starten {
flex: 1 1 100%;
max-width: 100%;
}

.practice-list-dankbarkeitstagebuch-starten {
gap: clamp(0.75rem, 1.5vw, 1rem);
}

.list-item-dankbarkeitstagebuch-starten {
gap: clamp(0.5rem, 1.5vw, 0.75rem);
}
}

@media (max-width: 480px) {
.hero-title-dankbarkeitstagebuch-starten {
font-size: 1.5rem;
}

.introduction-title-dankbarkeitstagebuch-starten,
.practice-title-dankbarkeitstagebuch-starten,
.challenges-title-dankbarkeitstagebuch-starten,
.conclusion-title-dankbarkeitstagebuch-starten,
.related-title-dankbarkeitstagebuch-starten {
font-size: 1.25rem;
}

.steps-title-dankbarkeitstagebuch-starten {
font-size: 1.25rem;
}

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

.card-icon-dankbarkeitstagebuch-starten {
width: 40px;
height: 40px;
font-size: 1.25rem;
}

.related-card-dankbarkeitstagebuch-starten {
flex: 1 1 100%;
max-width: 100%;
}

.related-cards-dankbarkeitstagebuch-starten {
flex-direction: column;
}
}

.main-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-dankbarkeitspraxis-herausforderungen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-dankbarkeitspraxis-herausforderungen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-dankbarkeitspraxis-herausforderungen::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-dankbarkeitspraxis-herausforderungen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-dankbarkeitspraxis-herausforderungen a {
  color: #10b981;
  text-decoration: none;
  transition: color 150ms ease;
  font-weight: 500;
}

.breadcrumbs-dankbarkeitspraxis-herausforderungen a:hover {
  color: #059669;
}

.breadcrumbs-dankbarkeitspraxis-herausforderungen span {
  color: #64748b;
}

.hero-content-dankbarkeitspraxis-herausforderungen {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-dankbarkeitspraxis-herausforderungen {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.meta-item-dankbarkeitspraxis-herausforderungen {
  color: #94a3b8;
  font-weight: 500;
}

.meta-separator-dankbarkeitspraxis-herausforderungen {
  color: #475569;
}

.hero-image-wrapper-dankbarkeitspraxis-herausforderungen {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.hero-image-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.intro-section-dankbarkeitspraxis-herausforderungen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.intro-paragraph-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.challenge-one-section-dankbarkeitspraxis-herausforderungen {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.challenge-wrapper-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenge-image-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-img-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.challenge-text-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.challenge-paragraph-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenge-two-section-dankbarkeitspraxis-herausforderungen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.challenge-wrapper-two-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenge-text-two-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-title-two-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.challenge-paragraph-two-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenge-image-two-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-img-two-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.techniques-section-dankbarkeitspraxis-herausforderungen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.techniques-header-dankbarkeitspraxis-herausforderungen {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.techniques-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.techniques-subtitle-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.techniques-cards-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.technique-card-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease;
}

.technique-card-dankbarkeitspraxis-herausforderungen:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.card-number-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.card-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.card-text-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.deeper-section-dankbarkeitspraxis-herausforderungen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.deeper-wrapper-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.deeper-text-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.deeper-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.deeper-paragraph-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.deeper-image-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.deeper-img-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.conclusion-section-dankbarkeitspraxis-herausforderungen {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-box-dankbarkeitspraxis-herausforderungen {
  background: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.conclusion-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.conclusion-text-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-highlight-dankbarkeitspraxis-herausforderungen {
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #d1fae5;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-final-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cta-dankbarkeitspraxis-herausforderungen {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
}

.cta-text-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.cta-button-dankbarkeitspraxis-herausforderungen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms ease;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.cta-button-dankbarkeitspraxis-herausforderungen:hover {
  background: #059669;
  transform: translateY(-2px);
}

.related-section-dankbarkeitspraxis-herausforderungen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.related-cards-dankbarkeitspraxis-herausforderungen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-dankbarkeitspraxis-herausforderungen {
  flex: 1 1 calc(33.333% - 1.667rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-dankbarkeitspraxis-herausforderungen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-card-image-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-dankbarkeitspraxis-herausforderungen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-dankbarkeitspraxis-herausforderungen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.related-card-desc-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-dankbarkeitspraxis-herausforderungen {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: color 150ms ease;
  margin-top: 0.5rem;
}

.related-card-link-dankbarkeitspraxis-herausforderungen:hover {
  color: #059669;
  text-decoration: underline;
}

.disclaimer-section-dankbarkeitspraxis-herausforderungen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-dankbarkeitspraxis-herausforderungen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-dankbarkeitspraxis-herausforderungen {
  background: #f1f5f9;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.disclaimer-title-dankbarkeitspraxis-herausforderungen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}

.disclaimer-text-dankbarkeitspraxis-herausforderungen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero-section-dankbarkeitspraxis-herausforderungen::before {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -20%;
  }

  .hero-section-dankbarkeitspraxis-herausforderungen::after {
    width: 300px;
    height: 300px;
    bottom: -15%;
  }

  .intro-content-dankbarkeitspraxis-herausforderungen {
    flex-direction: column;
  }

  .intro-text-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenge-wrapper-dankbarkeitspraxis-herausforderungen {
    flex-direction: column-reverse;
  }

  .challenge-image-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenge-text-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenge-wrapper-two-dankbarkeitspraxis-herausforderungen {
    flex-direction: column;
  }

  .challenge-text-two-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenge-image-two-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-card-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
  }

  .deeper-wrapper-dankbarkeitspraxis-herausforderungen {
    flex-direction: column;
  }

  .deeper-text-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .deeper-image-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-dankbarkeitspraxis-herausforderungen {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-dankbarkeitspraxis-herausforderungen {
    font-size: 0.75rem;
  }

  .hero-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.75rem;
  }

  .hero-subtitle-dankbarkeitspraxis-herausforderungen {
    font-size: 1rem;
  }

  .intro-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .challenge-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .challenge-title-two-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .techniques-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .card-number-dankbarkeitspraxis-herausforderungen {
    font-size: 2.5rem;
  }

  .deeper-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .conclusion-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .related-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.5rem;
  }

  .disclaimer-title-dankbarkeitspraxis-herausforderungen {
    font-size: 1.25rem;
  }

  .cta-button-dankbarkeitspraxis-herausforderungen {
    width: 100%;
  }
}

.main-taegliche-dankbarkeitspraktiken {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-taegliche-dankbarkeitspraktiken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-taegliche-dankbarkeitspraktiken::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-taegliche-dankbarkeitspraktiken::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-taegliche-dankbarkeitspraktiken .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs-taegliche-dankbarkeitspraktiken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-taegliche-dankbarkeitspraktiken a {
  color: #10b981;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-taegliche-dankbarkeitspraktiken a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-taegliche-dankbarkeitspraktiken span {
  color: #64748b;
}

.hero-content-taegliche-dankbarkeitspraktiken {
  max-width: 700px;
}

.hero-meta-taegliche-dankbarkeitspraktiken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #cbd5e1;
}

.meta-item-taegliche-dankbarkeitspraktiken {
  font-weight: 500;
}

.meta-separator-taegliche-dankbarkeitspraktiken {
  color: #475569;
}

.hero-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-taegliche-dankbarkeitspraktiken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-section-taegliche-dankbarkeitspraktiken {
  background: #0a0f1e;
  padding: 0 0 clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper-taegliche-dankbarkeitspraktiken {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-image-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.intro-section-taegliche-dankbarkeitspraktiken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-taegliche-dankbarkeitspraktiken {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.practices-section-taegliche-dankbarkeitspraktiken {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.practices-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-subtitle-taegliche-dankbarkeitspraktiken {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-grid-taegliche-dankbarkeitspraktiken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.practice-card-taegliche-dankbarkeitspraktiken {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: clamp(8px, 2vw, 16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 250ms ease;
}

.practice-card-taegliche-dankbarkeitspraktiken:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.1);
}

.practice-number-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.practice-card-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-card-text-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-card-duration-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #10b981;
  margin: 0;
  font-weight: 500;
}

.implementation-section-taegliche-dankbarkeitspraktiken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.implementation-image-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.implementation-text-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.implementation-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-taegliche-dankbarkeitspraktiken {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-subheading-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: clamp(1.5rem, 2vw, 2rem) 0 clamp(1rem, 1.5vw, 1.25rem) 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-list-taegliche-dankbarkeitspraktiken {
  list-style: none;
  margin: clamp(1.25rem, 2vw, 1.75rem) 0;
  padding: 0;
}

.implementation-list-item-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #475569;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-list-item-taegliche-dankbarkeitspraktiken::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefits-section-taegliche-dankbarkeitspraktiken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.benefits-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-subtitle-taegliche-dankbarkeitspraktiken {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-content-taegliche-dankbarkeitspraktiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-text-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-img-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.benefit-item-taegliche-dankbarkeitspraktiken {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.benefit-item-taegliche-dankbarkeitspraktiken:last-child {
  margin-bottom: 0;
}

.benefit-item-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #10b981;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-item-text-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-section-taegliche-dankbarkeitspraktiken {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-taegliche-dankbarkeitspraktiken {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.05);
  border-radius: clamp(8px, 2vw, 12px);
  text-align: center;
}

.quote-text-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem) 0;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #10b981;
  font-weight: 600;
  font-style: normal;
  display: block;
}

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

.conclusion-wrapper-taegliche-dankbarkeitspraktiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-taegliche-dankbarkeitspraktiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-taegliche-dankbarkeitspraktiken {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-image-img-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.disclaimer-section-taegliche-dankbarkeitspraktiken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-taegliche-dankbarkeitspraktiken {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-taegliche-dankbarkeitspraktiken {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-taegliche-dankbarkeitspraktiken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-taegliche-dankbarkeitspraktiken {
  flex: 1 1 300px;
  max-width: 360px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-taegliche-dankbarkeitspraktiken:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

.related-card-image-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

.related-card-img-taegliche-dankbarkeitspraktiken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.related-card-taegliche-dankbarkeitspraktiken:hover .related-card-img-taegliche-dankbarkeitspraktiken {
  transform: scale(1.05);
}

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

.related-card-title-taegliche-dankbarkeitspraktiken {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-taegliche-dankbarkeitspraktiken {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-taegliche-dankbarkeitspraktiken {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  gap: 0.5rem;
  transition: all 150ms ease;
  margin-top: auto;
}

.related-card-link-taegliche-dankbarkeitspraktiken:hover {
  color: #059669;
  transform: translateX(4px);
}

.related-card-link-taegliche-dankbarkeitspraktiken::after {
  content: '';
  transition: transform 150ms ease;
}

.related-card-link-taegliche-dankbarkeitspraktiken:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .intro-wrapper-taegliche-dankbarkeitspraktiken,
  .implementation-wrapper-taegliche-dankbarkeitspraktiken,
  .benefits-content-taegliche-dankbarkeitspraktiken,
  .conclusion-wrapper-taegliche-dankbarkeitspraktiken {
    flex-direction: column;
  }

  .intro-text-taegliche-dankbarkeitspraktiken,
  .intro-image-taegliche-dankbarkeitspraktiken,
  .implementation-image-taegliche-dankbarkeitspraktiken,
  .implementation-text-taegliche-dankbarkeitspraktiken,
  .benefits-image-taegliche-dankbarkeitspraktiken,
  .benefits-text-taegliche-dankbarkeitspraktiken,
  .conclusion-text-taegliche-dankbarkeitspraktiken,
  .conclusion-image-taegliche-dankbarkeitspraktiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-image-taegliche-dankbarkeitspraktiken {
    order: 0;
  }

  .practice-grid-taegliche-dankbarkeitspraktiken {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .breadcrumbs-taegliche-dankbarkeitspraktiken {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .related-cards-taegliche-dankbarkeitspraktiken {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .related-card-taegliche-dankbarkeitspraktiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-taegliche-dankbarkeitspraktiken {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
  }

  .hero-title-taegliche-dankbarkeitspraktiken {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }

  .hero-subtitle-taegliche-dankbarkeitspraktiken {
    font-size: clamp(0.95rem, 1.2vw, 1rem);
  }

  .intro-section-taegliche-dankbarkeitspraktiken,
  .practices-section-taegliche-dankbarkeitspraktiken,
  .implementation-section-taegliche-dankbarkeitspraktiken,
  .benefits-section-taegliche-dankbarkeitspraktiken,
  .quote-section-taegliche-dankbarkeitspraktiken,
  .conclusion-section-taegliche-dankbarkeitspraktiken,
  .disclaimer-section-taegliche-dankbarkeitspraktiken,
  .related-section-taegliche-dankbarkeitspraktiken {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .practice-card-taegliche-dankbarkeitspraktiken {
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .featured-quote-taegliche-dankbarkeitspraktiken {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .quote-text-taegliche-dankbarkeitspraktiken {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .disclaimer-content-taegliche-dankbarkeitspraktiken {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gratitude-philosophy-about {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

.hero-opening-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-opening-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-opening-text-about {
  text-align: center;
  max-width: 700px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.roots-section-about {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.roots-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 0.75rem;
}

.section-description-about {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.roots-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.roots-text-about {
  flex: 1 1 45%;
  min-width: 0;
}

.roots-text-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.roots-text-about p:last-child {
  margin-bottom: 0;
}

.roots-image-about {
  flex: 1 1 45%;
  min-width: 0;
}

.roots-image-about img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .roots-split-about {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .roots-text-about,
  .roots-image-about {
    flex: 1 1 100%;
  }
}

.practice-elements-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-intro-about {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.practice-intro-about p {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

.elements-grid-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.element-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--color-bg-quaternary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all var(--transition-base);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.element-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.element-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: inline-block;
}

.element-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 0.75rem;
}

.element-text-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

.approach-framework-about {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-header-about {
  text-align: center;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-item-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  min-width: 80px;
}

.step-details-about {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-about {
  font-size: clamp(1.1rem, 2.5vw + 0.4rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 0.75rem;
}

.step-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .step-item-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }
}

.impact-spotlight-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.impact-header-about {
  text-align: center;
}

.impact-quote-section-about {
  background: var(--color-bg-quaternary);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
}

.impact-quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin: 0 0 1.5rem 0;
}

.impact-quote-author-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  font-style: normal;
  font-weight: 600;
}

.impact-stats-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-block-about {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.stat-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary-light);
  font-weight: 600;
}

.vision-section-about {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.vision-header-about {
  text-align: center;
}

.vision-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.vision-text-about {
  flex: 1 1 50%;
  min-width: 0;
}

.vision-text-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.vision-text-about p:last-child {
  margin-bottom: 0;
}

.vision-image-about {
  flex: 1 1 50%;
  min-width: 0;
}

.vision-image-about img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .vision-split-about {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .vision-text-about,
  .vision-image-about {
    flex: 1 1 100%;
  }
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

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

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

  .practice-elements-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .approach-framework-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .impact-spotlight-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

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

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-opening-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

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

  .practice-elements-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .approach-framework-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .impact-spotlight-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

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

  .disclaimer-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  transition: background-color var(--transition-base), color var(--transition-base);
}

.faq-question:hover {
  background-color: var(--color-bg-quaternary);
  color: var(--color-primary);
}

.faq-question-text {
  text-align: left;
  flex: 1;
}

.faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  background-color: var(--color-bg-quaternary);
  border-top: 1px solid #e2e8f0;
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  font-weight: 400;
}

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

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-question {
    padding: var(--space-xl);
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl);
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }

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

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
  font-weight: 400;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
  }

  .faq-cta-text {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
  }

  .faq-cta-button {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem 2rem;
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

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

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .services-content {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .services-content {
    padding: 5rem 2rem;
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background-color: rgba(16, 185, 129, 0.05);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-card-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-card-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card-topics li {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.2rem, 0.9375rem);
  color: var(--color-text-muted-dark);
  padding-left: 1.5rem;
  position: relative;
}

.service-card-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: 2.5rem 1rem;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.3rem, 1.0625rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem 2rem;
  }
}

.gratitude-legal {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
}

.gratitude-legal main {
  width: 100%;
}

.gratitude-legal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.gratitude-legal .legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.gratitude-legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  font-weight: 700;
}

.gratitude-legal .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.gratitude-legal .legal-section {
  margin-bottom: var(--space-3xl);
}

.gratitude-legal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  line-height: 1.4;
  font-weight: 700;
}

.gratitude-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.gratitude-legal ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.gratitude-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.gratitude-legal .contact-section {
  background-color: var(--color-bg-quaternary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.gratitude-legal .contact-section h2 {
  margin-top: 0;
}

.gratitude-legal .contact-section p {
  margin-bottom: var(--space-sm);
}

.gratitude-legal .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .gratitude-legal .legal-content {
    padding: var(--space-2xl) 0;
  }

  .gratitude-legal .legal-section {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .gratitude-legal .container {
    padding: 0 var(--space-lg);
  }

  .gratitude-legal .legal-content {
    padding: var(--space-3xl) 0;
  }
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  padding: var(--space-md);
}

.thank-you-section {
  width: 100%;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.thank-you-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.thank-you-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.thank-you-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 0.875rem 2.5rem;
  animation: fadeInUp 0.7s ease-out 0.6s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-you-content {
    gap: var(--space-xl);
  }

  .thank-you-icon {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-lg);
  }

  .thank-you-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-you-content {
    gap: var(--space-2xl);
  }

  .btn-large {
    padding: 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) 0;
  }

  .thank-you-content {
    gap: var(--space-2xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent-warm) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-code-container {
  position: relative;
  margin-bottom: var(--space-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 2;
  text-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.error-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.error-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.error-actions {
  margin-bottom: var(--space-2xl);
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.gratitude-hint {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.hint-label {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.hint-text {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  font-style: italic;
}

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

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.15;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .error-wrapper {
    padding: var(--space-2xl) 0;
  }

  .error-code-container {
    margin-bottom: var(--space-3xl);
  }

  .error-message {
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }

  .gratitude-hint {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-wrapper {
    padding: var(--space-3xl) 0;
  }

  .error-code-container {
    margin-bottom: var(--space-3xl);
  }

  .btn {
    padding: 0.875rem var(--space-2xl);
  }
}

.contact-page-support {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.contact-support-hero {
  background: var(--color-bg-primary);
  padding: 3rem var(--space-md) 4rem var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-support-hero-content {
  max-width: 900px;
}

.contact-support-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.contact-support-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
  max-width: 650px;
}

@media (min-width: 768px) {
  .contact-support-hero {
    padding: 5rem var(--space-md) 6rem var(--space-md);
  }

  .contact-support-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-support-hero {
    padding: 6rem var(--space-md) 7rem var(--space-md);
  }
}

.contact-support-main {
  background: var(--color-bg-primary);
  padding: 3rem var(--space-md) 4rem var(--space-md);
  overflow: hidden;
}

.contact-support-main-content {
  width: 100%;
}

.contact-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

.contact-support-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-support-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-support-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-support-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-support-form-header {
  margin-bottom: var(--space-lg);
}

.contact-support-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.contact-support-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

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

.contact-support-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-support-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
  letter-spacing: 0.3px;
}

.contact-support-input,
.contact-support-textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  transition: all var(--transition-base);
}

.contact-support-input::placeholder,
.contact-support-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

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

.contact-support-textarea {
  min-height: 140px;
  resize: vertical;
  max-height: 400px;
}

.contact-support-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-support-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-support-submit:active {
  transform: translateY(0);
}

.contact-support-submit:disabled {
  background: var(--color-text-muted-dark);
  cursor: not-allowed;
  transform: none;
}

.contact-support-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.9rem);
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.contact-support-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-support-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-support-info-header {
  margin-bottom: var(--space-lg);
}

.contact-support-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.contact-support-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

.contact-support-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-support-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-support-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.35rem;
}

.contact-support-info-content {
  flex: 1;
  min-width: 0;
}

.contact-support-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-xs) 0;
}

.contact-support-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
}

.contact-support-info-text a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-support-info-text a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-support-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}

.contact-support-card-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1.25rem 0;
}

.contact-support-hours {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-support-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-support-day {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
}

.contact-support-time {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  text-align: right;
}

@media (min-width: 768px) {
  .contact-support-main {
    padding: 4rem var(--space-md) 5rem var(--space-md);
  }

  .contact-support-grid {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-support-main {
    padding: 5rem var(--space-md) 6rem var(--space-md);
  }

  .contact-support-grid {
    gap: 5rem;
  }
}

.contact-support-cta {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-support-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-support-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.contact-support-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-support-cta {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-support-cta {
    padding: 5rem var(--space-md);
  }
}

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

  .contact-support-grid {
    gap: 2rem;
  }

  .contact-support-info-item {
    gap: 1rem;
  }

  .contact-support-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}