
    @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: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --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(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.15);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.2);
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.875;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

section {
  padding: var(--space-3xl) 0;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.card-sm {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.card-lg {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

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

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

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

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

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

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

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

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-lg);
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }

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

.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

code {
  background: var(--color-bg-secondary);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  color: var(--color-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th,
td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

th {
  background: var(--color-bg-secondary);
  font-weight: 600;
  color: var(--color-text-primary);
}

tr:hover {
  background: var(--color-bg-tertiary);
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
  }
}

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none;
  }
}
.header-goal-forge {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--color-primary-light);
}

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

.header-goal-forge-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.header-goal-forge-brand:hover {
  opacity: 0.85;
}

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

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

.header-goal-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex: 1;
  margin: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.header-goal-forge-nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.header-goal-forge-nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

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

.header-goal-forge-nav-link:hover:after {
  width: 100%;
}

.header-goal-forge-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-goal-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.header-goal-forge-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-goal-forge-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-goal-forge-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-goal-forge-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-goal-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  padding-top: 4.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
}

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

.header-goal-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
}

.header-goal-forge-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.header-goal-forge-mobile-close:active {
  transform: scale(0.95);
}

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

.header-goal-forge-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: #f1f5f9;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.header-goal-forge-mobile-link:hover {
  background: rgba(79, 70, 229, 0.15);
  border-left-color: var(--color-primary);
  color: #ffffff;
}

.header-goal-forge-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.header-goal-forge-mobile-cta:active {
  transform: scale(0.98);
}

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

  .header-goal-forge-cta-button {
    display: block;
  }

  .header-goal-forge-mobile-toggle {
    display: none;
  }

  .header-goal-forge-mobile-menu {
    display: none;
  }
}

    .goal-mastery-hub {
  width: 100%;
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

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

.goal-mastery-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.hero-title-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.hero-cta-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.hero-btn-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.stat-card-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 12px;
  flex: 1 1 auto;
  min-width: 120px;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #4f46e5;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

.hero-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

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

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .hero-cta-index {
    flex-direction: column;
  }

  .hero-btn-index {
    width: 100%;
    text-align: center;
  }

  .hero-stats-index {
    justify-content: flex-start;
  }
}

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

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

.testimonials-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.testimonials-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
}

.testimonials-cards-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: 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.testimonial-text-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #0f172a;
}

.author-role-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

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

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

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

.partners-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.partners-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
}

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

.partner-badge-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #f1f5f9;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.badge-text-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: #334155;
}

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

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

.pricing-header-index {
  text-align: center;
}

.pricing-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.pricing-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
}

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

.pricing-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.pricing-card-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.pricing-card-featured-index {
  border: 2px solid #4f46e5;
  transform: scale(1.05);
}

.card-title-index {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}

.card-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  margin: 0;
}

.card-features-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.feature-item-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.feature-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.card-btn-index {
  width: 100%;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  background: #4338ca;
  box-shadow: 0 10px 15px rgba(79, 70, 229, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #06b6d4;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: #e0e7ff;
  color: #4338ca;
}

.btn-sm {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.btn-block {
  width: 100%;
}

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

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

.features-header-index {
  text-align: center;
}

.features-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.card-icon-index {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #4f46e5;
  display: flex;
  justify-content: center;
}

.card-text-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.features-image-index {
  width: 100%;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  max-height: 400px;
}

.features-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.faq-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #475569;
  margin: 0;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.faq-question-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

.benefits-section-index {
  background: #ffffff;
  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;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.benefit-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  min-width: clamp(3rem, 5vw, 4rem);
  text-align: center;
}

.benefit-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

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

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

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

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

.posts-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.post-card-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.post-image-index {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body-index {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.post-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.post-excerpt-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.post-link-index {
  align-self: flex-start;
}

.posts-cta-index {
  text-align: center;
  margin-top: 1rem;
}

.posts-btn-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

.cta-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
}

.cta-box-index {
  flex: 1 1 300px;
  max-width: 500px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-title-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.cta-btn-index {
  background: #ffffff !important;
  color: #4f46e5 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn-index:hover {
  background: #f1f5f9 !important;
  color: #4338ca !important;
}

.cta-secondary-index {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.cta-info-item-index {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.cta-icon-index {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #4f46e5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cta-info-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-info-title-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.cta-info-desc-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.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);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept-index {
  background: #4f46e5;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #4338ca;
}

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

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

@media (max-width: 768px) {
  .benefits-item-index {
    flex-direction: column;
    gap: 1rem;
  }

  .benefit-number-index {
    text-align: left;
  }

  .cta-content-index {
    flex-direction: column;
  }

  .cta-box-index,
  .cta-secondary-index {
    width: 100%;
  }

  .hero-stats-index {
    flex-direction: row;
  }

  .stat-card-index {
    flex: 1 1 100px;
  }

  .pricing-card-featured-index {
    transform: scale(1);
  }

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

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
  }
}

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

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

  .hero-stats-index {
    gap: 0.75rem;
  }

  .stat-card-index {
    flex: 1 1 auto;
    min-width: 100px;
  }

  .testimonials-cards-index {
    flex-direction: column;
  }

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

  .pricing-cards-index {
    flex-direction: column;
  }

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

  .features-cards-index {
    flex-direction: column;
  }

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

  .faq-items-index {
    gap: 1rem;
  }

  .posts-cards-index {
    flex-direction: column;
  }

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

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--color-text-secondary);
}

.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;
  max-width: 400px;
}

.footer-about h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
}

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--leading-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.125rem);
  font-family: var(--font-heading);
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

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

.footer-nav a,
.footer-legal a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

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

.footer-contact {
  display: block;
}

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0.625rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-bg-secondary);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 5vw, 4rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 0 1 auto;
    max-width: 350px;
  }

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }

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

@media (min-width: 1024px) {
  .footer-content {
    justify-content: flex-start;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .footer-about {
    flex: 0 1 280px;
  }

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }
}
    

.category-page-goal-setting-strategies {
  background: #0f172a;
  color: #ffffff;
  overflow-x: hidden;
}

.hero-section-goal-setting-strategies {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

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

.hero-header-goal-setting-strategies {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-subtitle-goal-setting-strategies {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats-goal-setting-strategies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stat-item-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
}

.stat-number-goal-setting-strategies {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #60a5fa;
  font-family: 'Playfair Display', serif;
}

.stat-label-goal-setting-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

.posts-section-goal-setting-strategies {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-goal-setting-strategies {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.posts-title-goal-setting-strategies {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.posts-subtitle-goal-setting-strategies {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.card-goal-setting-strategies {
  flex: 1 1 clamp(300px, 50vw - 2rem, 380px);
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.card-goal-setting-strategies:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  background: #334155;
}

.card-image-wrapper-goal-setting-strategies {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.card-image-wrapper-goal-setting-strategies img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-goal-setting-strategies {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.card-description-goal-setting-strategies {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-meta-goal-setting-strategies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #475569;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-goal-setting-strategies {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-goal-setting-strategies i {
  color: #60a5fa;
  font-size: 0.9em;
}

.card-link-goal-setting-strategies {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
  margin-top: auto;
}

.card-link-goal-setting-strategies:hover {
  background: #2563eb;
  transform: translateX(4px);
}

.insights-section-goal-setting-strategies {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-goal-setting-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .insights-content-goal-setting-strategies {
    flex-direction: column;
  }
}

.insights-quote-goal-setting-strategies {
  flex: 1 1 45%;
  min-width: 300px;
}

.quote-text-goal-setting-strategies {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: #e0e7ff;
  line-height: 1.7;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #1e293b;
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
}

.quote-text-goal-setting-strategies p {
  margin: 0 0 1.5rem 0;
  color: #e0e7ff;
}

.quote-author-goal-setting-strategies {
  display: block;
  margin-top: 1.5rem;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.author-name-goal-setting-strategies {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.author-title-goal-setting-strategies {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.insights-context-goal-setting-strategies {
  flex: 1 1 45%;
  min-width: 300px;
}

.insights-title-goal-setting-strategies {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.insights-text-goal-setting-strategies {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.insights-text-goal-setting-strategies:last-child {
  margin-bottom: 0;
}

.framework-section-goal-setting-strategies {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.framework-content-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.framework-header-goal-setting-strategies {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.framework-title-goal-setting-strategies {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.framework-subtitle-goal-setting-strategies {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.framework-steps-goal-setting-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-item-goal-setting-strategies {
  flex: 1 1 clamp(260px, 50vw - 2rem, 320px);
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-item-goal-setting-strategies:hover {
  background: #334155;
  border-color: #60a5fa;
  transform: translateY(-4px);
}

.step-number-goal-setting-strategies {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  background: #60a5fa;
  color: #0a0f1e;
  border-radius: 50%;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.step-title-goal-setting-strategies {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.step-description-goal-setting-strategies {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-goal-setting-strategies {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .posts-section-goal-setting-strategies,
  .framework-section-goal-setting-strategies,
  .insights-section-goal-setting-strategies {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .posts-grid-goal-setting-strategies {
    flex-direction: column;
  }

  .card-goal-setting-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-steps-goal-setting-strategies {
    flex-direction: column;
  }

  .step-item-goal-setting-strategies {
    flex: 1 1 100%;
  }

  .hero-stats-goal-setting-strategies {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-goal-setting-strategies {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .card-meta-goal-setting-strategies {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-item-goal-setting-strategies {
    width: 100%;
  }

  .insights-content-goal-setting-strategies {
    gap: 1.5rem;
  }

  .quote-text-goal-setting-strategies {
    font-size: 1.1rem;
  }
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: all 0.3s ease;
}

blockquote {
  margin: 0;
  padding: 0;
}

.main-smart-ziele-formulieren {
  width: 100%;
  overflow: hidden;
}

.hero-section-smart-ziele-formulieren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-smart-ziele-formulieren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-description-smart-ziele-formulieren {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-smart-ziele-formulieren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.meta-item-smart-ziele-formulieren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-smart-ziele-formulieren i {
  color: var(--color-primary);
  font-size: 1.1em;
}

.hero-image-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-smart-ziele-formulieren {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.breadcrumbs-smart-ziele-formulieren {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-smart-ziele-formulieren a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-smart-ziele-formulieren a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-smart-ziele-formulieren span {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .hero-content-smart-ziele-formulieren {
    flex-direction: column;
  }
  
  .hero-text-smart-ziele-formulieren,
  .hero-image-smart-ziele-formulieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-smart-ziele-formulieren {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-smart-ziele-formulieren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-smart-ziele-formulieren {
    flex-direction: column;
  }
  
  .intro-text-smart-ziele-formulieren,
  .intro-image-smart-ziele-formulieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.what-is-smart-section-smart-ziele-formulieren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.what-is-smart-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.what-is-smart-text-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.what-is-smart-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.what-is-smart-paragraph-smart-ziele-formulieren {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.smart-criteria-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.criteria-item-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.criteria-letter-smart-ziele-formulieren {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}

.criteria-name-smart-ziele-formulieren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.criteria-text-smart-ziele-formulieren {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.what-is-smart-image-smart-ziele-formulieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.what-is-smart-image-smart-ziele-formulieren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .what-is-smart-content-smart-ziele-formulieren {
    flex-direction: column;
  }
  
  .what-is-smart-text-smart-ziele-formulieren,
  .what-is-smart-image-smart-ziele-formulieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.steps-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.steps-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.step-container-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

.step-item-smart-ziele-formulieren {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-smart-ziele-formulieren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: clamp(3rem, 5vw, 4rem);
}

.step-details-smart-ziele-formulieren {
  flex: 1;
}

.step-heading-smart-ziele-formulieren {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-smart-ziele-formulieren {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-smart-ziele-formulieren {
    gap: 1rem;
  }
  
  .step-number-smart-ziele-formulieren {
    min-width: 2.5rem;
  }
}

.examples-section-smart-ziele-formulieren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.examples-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.examples-title-smart-ziele-formulieren {
  grid-column: 1 / -1;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  width: 100%;
}

.examples-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.examples-title-smart-ziele-formulieren {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.example-pair-smart-ziele-formulieren {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.example-card-smart-ziele-formulieren {
  flex: 1;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.example-wrong-smart-ziele-formulieren {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
}

.example-right-smart-ziele-formulieren {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
}

.example-label-smart-ziele-formulieren {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.example-text-smart-ziele-formulieren {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.examples-image-smart-ziele-formulieren {
  width: 100%;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.examples-image-smart-ziele-formulieren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .example-pair-smart-ziele-formulieren {
    flex-direction: column;
  }
}

.tips-section-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.tips-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.tips-grid-smart-ziele-formulieren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.tip-card-smart-ziele-formulieren {
  flex: 1 1 clamp(250px, 30vw, 320px);
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.tip-card-smart-ziele-formulieren:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-icon-smart-ziele-formulieren {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-name-smart-ziele-formulieren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.tip-text-smart-ziele-formulieren {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.tips-image-smart-ziele-formulieren {
  width: 100%;
}

.tips-image-smart-ziele-formulieren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.conclusion-section-smart-ziele-formulieren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-smart-ziele-formulieren {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.conclusion-highlight-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.highlight-text-smart-ziele-formulieren {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.related-section-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-smart-ziele-formulieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-smart-ziele-formulieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-cards-smart-ziele-formulieren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  justify-content: center;
}

.related-card-smart-ziele-formulieren {
  flex: 1 1 clamp(280px, 32vw, 360px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-smart-ziele-formulieren:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-image-smart-ziele-formulieren {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-smart-ziele-formulieren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-smart-ziele-formulieren {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-smart-ziele-formulieren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.related-card-description-smart-ziele-formulieren {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-smart-ziele-formulieren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-smart-ziele-formulieren {
  background: var(--color-bg-tertiary);
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-smart-ziele-formulieren {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-smart-ziele-formulieren {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-smart-ziele-formulieren,
  .intro-section-smart-ziele-formulieren,
  .what-is-smart-section-smart-ziele-formulieren,
  .steps-section-smart-ziele-formulieren,
  .examples-section-smart-ziele-formulieren,
  .tips-section-smart-ziele-formulieren,
  .conclusion-section-smart-ziele-formulieren,
  .related-section-smart-ziele-formulieren,
  .disclaimer-section-smart-ziele-formulieren {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .tips-grid-smart-ziele-formulieren {
    flex-direction: column;
  }
  
  .tip-card-smart-ziele-formulieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .related-cards-smart-ziele-formulieren {
    flex-direction: column;
  }
  
  .related-card-smart-ziele-formulieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-smart-ziele-formulieren {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
  
  .steps-title-smart-ziele-formulieren,
  .tips-title-smart-ziele-formulieren,
  .related-title-smart-ziele-formulieren,
  .what-is-smart-title-smart-ziele-formulieren,
  .intro-title-smart-ziele-formulieren,
  .examples-title-smart-ziele-formulieren,
  .conclusion-title-smart-ziele-formulieren {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  
  .step-number-smart-ziele-formulieren {
    font-size: clamp(1.5rem, 3vw, 2rem);
    min-width: 2.25rem;
  }
}

.main-ziele-in-meilensteine-aufteilen {
  width: 100%;
  overflow-x: hidden;
}

.breadcrumbs-ziele-in-meilensteine-aufteilen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-ziele-in-meilensteine-aufteilen a {
  color: #4f46e5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-ziele-in-meilensteine-aufteilen a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumb-divider-ziele-in-meilensteine-aufteilen {
  color: #94a3b8;
}

.breadcrumb-current-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-weight: 500;
}

.hero-section-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-ziele-in-meilensteine-aufteilen {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  flex-wrap: wrap;
}

.meta-item-ziele-in-meilensteine-aufteilen {
  color: #64748b;
}

.meta-divider-ziele-in-meilensteine-aufteilen {
  color: #cbd5e1;
}

.hero-image-block-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-ziele-in-meilensteine-aufteilen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .hero-content-ziele-in-meilensteine-aufteilen {
    flex-direction: column;
  }

  .hero-text-block-ziele-in-meilensteine-aufteilen,
  .hero-image-block-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-ziele-in-meilensteine-aufteilen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }
}

.intro-section-ziele-in-meilensteine-aufteilen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-wrapper-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-ziele-in-meilensteine-aufteilen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-ziele-in-meilensteine-aufteilen {
    flex-direction: column;
  }

  .intro-text-ziele-in-meilensteine-aufteilen,
  .intro-image-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.steps-header-ziele-in-meilensteine-aufteilen {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-ziele-in-meilensteine-aufteilen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.steps-content-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.step-item-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.step-number-ziele-in-meilensteine-aufteilen {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  min-width: clamp(3rem, 6vw, 4rem);
  font-family: 'Playfair Display', serif;
}

.step-text-ziele-in-meilensteine-aufteilen {
  flex: 1;
}

.step-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-description-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-description-ziele-in-meilensteine-aufteilen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .step-item-ziele-in-meilensteine-aufteilen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-ziele-in-meilensteine-aufteilen {
    font-size: 2rem;
    min-width: 3rem;
  }
}

.tracking-section-ziele-in-meilensteine-aufteilen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tracking-wrapper-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tracking-image-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-image-element-ziele-in-meilensteine-aufteilen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.tracking-text-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tracking-paragraph-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tracking-tips-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 3px solid #4f46e5;
  margin-top: 1.5rem;
}

.tracking-tips-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tracking-list-ziele-in-meilensteine-aufteilen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracking-list-item-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.tracking-list-item-ziele-in-meilensteine-aufteilen:before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tracking-wrapper-ziele-in-meilensteine-aufteilen {
    flex-direction: column;
  }

  .tracking-image-ziele-in-meilensteine-aufteilen,
  .tracking-text-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-header-ziele-in-meilensteine-aufteilen {
  text-align: center;
  margin-bottom: 3rem;
}

.mistakes-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistakes-subtitle-ziele-in-meilensteine-aufteilen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.mistakes-grid-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.mistake-card-ziele-in-meilensteine-aufteilen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-top: 3px solid #4f46e5;
}

.mistake-number-ziele-in-meilensteine-aufteilen {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mistake-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.35rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistake-text-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .mistake-card-ziele-in-meilensteine-aufteilen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .mistake-card-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.real-example-section-ziele-in-meilensteine-aufteilen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.example-wrapper-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.example-text-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.example-paragraph-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.example-breakdown-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 3px solid #4f46e5;
}

.example-breakdown-ziele-in-meilensteine-aufteilen p {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-breakdown-ziele-in-meilensteine-aufteilen p:last-child {
  margin-bottom: 0;
}

.example-breakdown-ziele-in-meilensteine-aufteilen strong {
  color: #0f172a;
  font-weight: 600;
}

.example-image-ziele-in-meilensteine-aufteilen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-element-ziele-in-meilensteine-aufteilen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .example-wrapper-ziele-in-meilensteine-aufteilen {
    flex-direction: column;
  }

  .example-text-ziele-in-meilensteine-aufteilen,
  .example-image-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-ziele-in-meilensteine-aufteilen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-ziele-in-meilensteine-aufteilen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.conclusion-action-ziele-in-meilensteine-aufteilen {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 2px solid #e0e7ff;
  margin-bottom: 2rem;
}

.conclusion-action-text-ziele-in-meilensteine-aufteilen {
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
}

.conclusion-list-ziele-in-meilensteine-aufteilen {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.conclusion-list-item-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.conclusion-list-item-ziele-in-meilensteine-aufteilen:before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

.conclusion-list-item-ziele-in-meilensteine-aufteilen:last-child {
  margin-bottom: 0;
}

.related-posts-section-ziele-in-meilensteine-aufteilen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-header-ziele-in-meilensteine-aufteilen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-ziele-in-meilensteine-aufteilen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.related-cards-ziele-in-meilensteine-aufteilen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-ziele-in-meilensteine-aufteilen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-ziele-in-meilensteine-aufteilen:hover {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.related-card-image-ziele-in-meilensteine-aufteilen {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2;
}

.related-card-content-ziele-in-meilensteine-aufteilen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.05rem, 2vw + 0.25rem, 1.35rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
  flex: 1;
}

.related-card-link-ziele-in-meilensteine-aufteilen {
  color: #4f46e5;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-ziele-in-meilensteine-aufteilen:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-ziele-in-meilensteine-aufteilen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-ziele-in-meilensteine-aufteilen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-ziele-in-meilensteine-aufteilen {
  background: #e0e7ff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-ziele-in-meilensteine-aufteilen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.disclaimer-heading-ziele-in-meilensteine-aufteilen {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-ziele-in-meilensteine-aufteilen {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-ziele-in-meilensteine-aufteilen {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .disclaimer-content-ziele-in-meilensteine-aufteilen {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .main-ziele-in-meilensteine-aufteilen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }
}

.main-visualisierung-mentale-vorbereitung {
  width: 100%;
  overflow: hidden;
}

.hero-section-visualisierung-mentale-vorbereitung {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-visualisierung-mentale-vorbereitung {
  display: flex;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-visualisierung-mentale-vorbereitung a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-visualisierung-mentale-vorbereitung a:hover {
  color: #cbd5e1;
}

.breadcrumbs-visualisierung-mentale-vorbereitung span {
  color: #475569;
}

.breadcrumbs-visualisierung-mentale-vorbereitung span:last-child {
  color: #e2e8f0;
}

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

.hero-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-visualisierung-mentale-vorbereitung {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  border-radius: 6px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.hero-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

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

  .hero-text-visualisierung-mentale-vorbereitung,
  .hero-image-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

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

  .intro-text-visualisierung-mentale-vorbereitung,
  .intro-image-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-section-visualisierung-mentale-vorbereitung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.technique-content-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.technique-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.technique-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.steps-list-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number-visualisierung-mentale-vorbereitung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  font-family: 'Playfair Display', serif;
}

.step-title-visualisierung-mentale-vorbereitung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.step-text-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.technique-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

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

  .technique-text-visualisierung-mentale-vorbereitung,
  .technique-image-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.sensory-section-visualisierung-mentale-vorbereitung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.sensory-content-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sensory-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.sensory-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

.sensory-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.sensory-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.sensory-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.sensory-highlight-visualisierung-mentale-vorbereitung {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #e0e7ff;
  border-left: 4px solid #4f46e5;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #3730a3;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

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

  .sensory-image-visualisierung-mentale-vorbereitung,
  .sensory-text-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .sensory-image-visualisierung-mentale-vorbereitung {
    order: 0;
  }
}

.practice-section-visualisierung-mentale-vorbereitung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-cards-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-card-visualisierung-mentale-vorbereitung {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.card-title-visualisierung-mentale-vorbereitung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.card-text-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.practice-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

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

  .practice-text-visualisierung-mentale-vorbereitung,
  .practice-image-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.habit-section-visualisierung-mentale-vorbereitung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.habit-content-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.habit-image-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.habit-img-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  object-fit: cover;
}

.habit-text-visualisierung-mentale-vorbereitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.habit-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.habit-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.habit-quote-visualisierung-mentale-vorbereitung {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f1f5f9;
  border-left: 4px solid #4f46e5;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  font-style: italic;
}

.quote-text-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}

.quote-author-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  display: block;
  font-style: normal;
}

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

  .habit-image-visualisierung-mentale-vorbereitung,
  .habit-text-visualisierung-mentale-vorbereitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-visualisierung-mentale-vorbereitung {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-visualisierung-mentale-vorbereitung {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-visualisierung-mentale-vorbereitung {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-visualisierung-mentale-vorbereitung {
  display: inline-block;
  padding: clamp(0.875rem, 1vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #4f46e5;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-visualisierung-mentale-vorbereitung:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.disclaimer-section-visualisierung-mentale-vorbereitung {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-visualisierung-mentale-vorbereitung {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-visualisierung-mentale-vorbereitung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-visualisierung-mentale-vorbereitung {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

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

.related-card-visualisierung-mentale-vorbereitung {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-visualisierung-mentale-vorbereitung:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.related-link-visualisierung-mentale-vorbereitung {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.related-image-visualisierung-mentale-vorbereitung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-image-visualisierung-mentale-vorbereitung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-visualisierung-mentale-vorbereitung:hover .related-image-visualisierung-mentale-vorbereitung img {
  transform: scale(1.05);
}

.related-article-title-visualisierung-mentale-vorbereitung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  margin: 0;
}

.related-description-visualisierung-mentale-vorbereitung {
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  color: #64748b;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .related-cards-visualisierung-mentale-vorbereitung {
    flex-direction: column;
  }

  .related-card-visualisierung-mentale-vorbereitung {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-visualisierung-mentale-vorbereitung {
    font-size: 0.7rem;
  }

  .hero-title-visualisierung-mentale-vorbereitung {
    font-size: 1.5rem;
  }

  .step-number-visualisierung-mentale-vorbereitung {
    font-size: 1.5rem;
  }
}

.main-gewohnheiten-ziele-erreichen {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-gewohnheiten-ziele-erreichen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-gewohnheiten-ziele-erreichen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-gewohnheiten-ziele-erreichen a {
  color: #06b6d4;
  text-decoration: none;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-gewohnheiten-ziele-erreichen a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-gewohnheiten-ziele-erreichen span {
  color: #64748b;
}

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

.hero-text-wrapper-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-gewohnheiten-ziele-erreichen {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-gewohnheiten-ziele-erreichen {
  color: #06b6d4;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

.meta-divider-gewohnheiten-ziele-erreichen {
  color: #475569;
}

.hero-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-wrapper-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gewohnheiten-ziele-erreichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-gewohnheiten-ziele-erreichen {
    flex-direction: column;
  }

  .hero-text-wrapper-gewohnheiten-ziele-erreichen,
  .hero-image-wrapper-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-gewohnheiten-ziele-erreichen {
    font-size: 0.875rem;
  }
}

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

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

.intro-text-block-gewohnheiten-ziele-erreichen {
  max-width: 900px;
  margin: 0 auto;
}

.intro-title-gewohnheiten-ziele-erreichen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-gewohnheiten-ziele-erreichen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-highlight-gewohnheiten-ziele-erreichen {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-box-gewohnheiten-ziele-erreichen {
  background: #f0f9ff;
  border-left: 4px solid #06b6d4;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.highlight-text-gewohnheiten-ziele-erreichen {
  color: #0c4a6e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-gewohnheiten-ziele-erreichen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-gewohnheiten-ziele-erreichen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-gewohnheiten-ziele-erreichen > p {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.habit-loop-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.loop-item-gewohnheiten-ziele-erreichen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.loop-label-gewohnheiten-ziele-erreichen {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.loop-text-gewohnheiten-ziele-erreichen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-gewohnheiten-ziele-erreichen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-gewohnheiten-ziele-erreichen {
    flex-direction: column;
  }

  .content-text-gewohnheiten-ziele-erreichen,
  .content-image-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-gewohnheiten-ziele-erreichen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-reverse-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .content-wrapper-reverse-gewohnheiten-ziele-erreichen {
    flex-direction: column;
  }

  .content-wrapper-reverse-gewohnheiten-ziele-erreichen .content-image-gewohnheiten-ziele-erreichen {
    order: -1;
  }
}

.habit-translation-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.translation-row-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.translation-item-gewohnheiten-ziele-erreichen {
  flex: 1 1 calc(50% - 0.75rem);
  background: #f0f9ff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 3px solid #06b6d4;
}

.translation-label-gewohnheiten-ziele-erreichen {
  color: #0c4a6e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.translation-arrow-gewohnheiten-ziele-erreichen {
  color: #06b6d4;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .translation-row-gewohnheiten-ziele-erreichen {
    flex-direction: column;
  }

  .translation-item-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
  }

  .translation-arrow-gewohnheiten-ziele-erreichen {
    transform: rotate(90deg);
  }
}

.strategies-section-gewohnheiten-ziele-erreichen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-gewohnheiten-ziele-erreichen {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.strategies-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-subtitle-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-grid-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.strategy-card-gewohnheiten-ziele-erreichen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-top: 3px solid #06b6d4;
  transition: all 0.3s ease;
}

.strategy-card-gewohnheiten-ziele-erreichen:hover {
  transform: translateY(-4px);
  background: #334155;
}

.strategy-number-gewohnheiten-ziele-erreichen {
  color: #06b6d4;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.strategy-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-text-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .strategy-card-gewohnheiten-ziele-erreichen {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .strategy-card-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
  }
}

.implementation-section-gewohnheiten-ziele-erreichen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-gewohnheiten-ziele-erreichen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-text-gewohnheiten-ziele-erreichen > p {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.action-steps-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.action-step-gewohnheiten-ziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-gewohnheiten-ziele-erreichen {
  color: #06b6d4;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text-gewohnheiten-ziele-erreichen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-image-gewohnheiten-ziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-gewohnheiten-ziele-erreichen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-content-gewohnheiten-ziele-erreichen {
    flex-direction: column;
  }

  .implementation-text-gewohnheiten-ziele-erreichen,
  .implementation-image-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-gewohnheiten-ziele-erreichen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-gewohnheiten-ziele-erreichen {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-section-gewohnheiten-ziele-erreichen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-gewohnheiten-ziele-erreichen {
  max-width: 900px;
  margin: 0 auto;
  background: #f0f9ff;
  border-left: 4px solid #06b6d4;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.disclaimer-title-gewohnheiten-ziele-erreichen {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-gewohnheiten-ziele-erreichen {
  color: #0c4a6e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-gewohnheiten-ziele-erreichen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-gewohnheiten-ziele-erreichen {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-gewohnheiten-ziele-erreichen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-gewohnheiten-ziele-erreichen:hover {
  transform: translateY(-4px);
  background: #334155;
}

.related-image-wrapper-gewohnheiten-ziele-erreichen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #334155;
}

.related-card-image-gewohnheiten-ziele-erreichen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-gewohnheiten-ziele-erreichen {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-gewohnheiten-ziele-erreichen {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-gewohnheiten-ziele-erreichen {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-gewohnheiten-ziele-erreichen {
  color: #06b6d4;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-gewohnheiten-ziele-erreichen:hover {
  color: #0891b2;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-gewohnheiten-ziele-erreichen {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-card-gewohnheiten-ziele-erreichen {
    flex: 1 1 100%;
  }
}

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

  .breadcrumbs-gewohnheiten-ziele-erreichen {
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .strategies-grid-gewohnheiten-ziele-erreichen,
  .related-cards-gewohnheiten-ziele-erreichen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .strategy-card-gewohnheiten-ziele-erreichen,
  .related-card-gewohnheiten-ziele-erreichen {
    min-width: auto;
  }
}

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

html, body {
  width: 100%;
}

.goal-mastery-journey-about {
  background: #0a0f1e;
  color: #ffffff;
  font-family: var(--font-primary);
  overflow-x: hidden;
}

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

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

.hero-launch-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-launch-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-launch-text-about {
  text-align: center;
  max-width: 800px;
}

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-stats-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
  margin-top: 2.5rem;
}

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  text-align: center;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.foundation-section-about {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-desc-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.foundation-card-about {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.foundation-card-about:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.card-icon-about {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #f59e0b;
}

.card-title-about {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.card-text-about {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.approach-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

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

.process-step-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, 5vw, 3.5rem);
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
  min-width: 80px;
  text-align: right;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.approach-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  max-height: 400px;
  margin: 0 auto;
}

.philosophy-section-about {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.philosophy-text-about {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-para-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.philosophy-para-about:last-child {
  margin-bottom: 0;
}

.featured-quote-about {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 6px;
  margin: 2rem auto 0;
  max-width: 700px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.quote-author-about {
  font-size: 0.9rem;
  color: #94a3b8;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.values-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.values-cards-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.value-card-about {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.value-card-about:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
}

.value-icon-about {
  font-size: 2rem;
  color: #f59e0b;
}

.value-title-about {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.value-desc-about {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.disclaimer-section-about {
  background: rgba(245, 158, 11, 0.05);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto;
}

.disclaimer-title-about {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #f59e0b;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #a5b4fc;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1.5rem;
  }

  .process-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 60px;
    text-align: center;
  }

  .section-header-about {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-about {
    margin-bottom: 1rem;
  }

  .stat-item-about {
    flex: 1 1 45%;
  }

  .process-step-about {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number-about {
    font-size: 2rem;
    min-width: auto;
    text-align: left;
  }
}

.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;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
  font-weight: 700;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-tertiary);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item__trigger {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  transition: all 0.2s ease;
}

.faq-item__trigger:hover {
  background-color: var(--color-bg-primary);
}

.faq-item__question {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--leading-snug);
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 300;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[open] .faq-item__trigger {
  background-color: var(--color-bg-primary);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-item__trigger {
    padding: var(--space-lg);
  }

  .faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

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

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.faq-cta__content {
  flex: 1;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-tight);
  font-weight: 700;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: var(--leading-normal);
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid var(--color-bg-tertiary);
  cursor: pointer;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-bg-tertiary);
  border-color: var(--color-bg-tertiary);
}

.faq-cta__button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .faq-cta__content {
    flex: 1;
  }

  .faq-cta__button {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--space-lg);
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

.services-hero__image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.services-cards-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-card__icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: var(--leading-snug);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-relaxed);
}

.services-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.services-card__topics li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--leading-normal);
}

.services-card__topics li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-sm);
  }

  .services-hero__title {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 3.5rem);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-card {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-sm);
  }

  .services-cards-section {
    padding: var(--space-3xl) var(--space-sm);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-features {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-features__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.services-features__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.services-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.services-feature-item__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-success);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-tertiary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.services-feature-item__text h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-weight: 700;
  line-height: var(--leading-snug);
}

.services-feature-item__text p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-relaxed);
}

.services-features__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-features {
    padding: var(--space-3xl) var(--space-sm);
  }

  .services-features__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-features__container {
    gap: var(--space-3xl);
  }
}

.services-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  text-align: center;
}

.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--leading-relaxed);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: var(--leading-normal);
}

.services-cta__button:hover {
  background-color: var(--color-bg-secondary);
  transform: translateY(-2px);
}

.services-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-sm);
  }

  .services-cta__button {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-sm);
  }
}

:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.15);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.875;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.goal-docs {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.goal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.goal-docs .content {
  max-width: 800px;
  margin: 0 auto;
}

.goal-docs-header {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.goal-docs-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
}

.goal-docs-header .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

@media (min-width: 768px) {
  .goal-docs-header {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .goal-docs-header {
    padding: var(--space-3xl) 0;
  }
}

.goal-docs-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.goal-docs-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-lg);
  margin-top: var(--space-xl);
}

.goal-docs-section:first-of-type h2 {
  margin-top: 0;
}

.goal-docs-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.goal-docs-section ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.goal-docs-section li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.goal-docs-contact {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border: 1px solid var(--color-bg-secondary);
  overflow: hidden;
}

.goal-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-lg);
  margin-top: 0;
}

.goal-docs-contact p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.goal-docs-contact strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .goal-docs-section {
    padding: var(--space-3xl) 0;
  }

  .goal-docs-contact {
    padding: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .goal-docs-section {
    padding: var(--space-3xl) 0;
  }

  .goal-docs-contact {
    padding: var(--space-3xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.thank-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon svg {
  width: 100px;
  height: 100px;
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
  animation: slideUp 0.8s ease-out 0.1s both;
}

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

.thank-content .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
  font-weight: 500;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.thank-message {
  margin: var(--space-xl) 0;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.thank-message p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
  text-align: left;
}

.thank-message p:last-child {
  margin-bottom: 0;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  margin-top: var(--space-2xl);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  animation: slideUp 0.8s ease-out 0.4s both;
  border: 2px solid var(--color-primary);
}

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

.btn-home:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-message p {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-lg);
  }

  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .thank-icon svg {
    width: 130px;
    height: 130px;
  }

  .thank-content h1 {
    margin-bottom: var(--space-lg);
  }

  .thank-content .lead {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-icon svg {
    width: 150px;
    height: 150px;
  }

  .btn-home {
    padding: var(--space-md) var(--space-2xl);
    margin-top: var(--space-3xl);
  }
}

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

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-2xl);
  }
}

.error-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .error-visual {
    padding: var(--space-2xl) 0;
  }
}

.error-code-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-code-container {
    max-width: 400px;
  }
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 20vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.error-code::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .error-message {
    gap: var(--space-lg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin: 0;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: var(--leading-snug);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-features {
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
    gap: var(--space-sm);
  }
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-xl);
  }
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: var(--leading-tight);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .btn-primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }
  
  .btn-primary {
    transition: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

.contact-reach-us-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.contact-reach-us-hero {
  background-color: var(--color-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-reach-us-hero-content {
  text-align: center;
}

.contact-reach-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.contact-reach-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #e0e7ff;
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.contact-reach-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-reach-us-main-content {
  width: 100%;
}

.contact-reach-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.contact-reach-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-reach-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-reach-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.contact-reach-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-reach-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-reach-us-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-reach-us-input,
.contact-reach-us-textarea {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.contact-reach-us-input:focus,
.contact-reach-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: var(--color-bg-tertiary);
}

.contact-reach-us-input::placeholder,
.contact-reach-us-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.contact-reach-us-form-privacy {
  padding: var(--space-md);
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.contact-reach-us-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.contact-reach-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-reach-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-submit {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
}

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

.contact-reach-us-submit:active {
  transform: translateY(0);
}

.contact-reach-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.contact-reach-us-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-reach-us-info-item {
  display: flex;
  gap: var(--space-md);
}

.contact-reach-us-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.contact-reach-us-info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-reach-us-info-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-reach-us-info-value {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.contact-reach-us-info-extra {
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-bg-secondary);
}

.contact-reach-us-info-extra-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

.contact-reach-us-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-reach-us-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.contact-reach-us-hours-item:last-child {
  border-bottom: none;
}

.contact-reach-us-day {
  font-weight: 500;
  color: var(--color-text-primary);
}

.contact-reach-us-time {
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .contact-reach-us-hero {
    padding: 4rem var(--space-md);
  }

  .contact-reach-us-main {
    padding: 4rem var(--space-md);
  }

  .contact-reach-us-grid {
    gap: var(--space-3xl);
  }

  .contact-reach-us-form-wrapper {
    flex: 1 1 45%;
    max-width: 520px;
  }

  .contact-reach-us-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-hero {
    padding: 5rem var(--space-md);
  }

  .contact-reach-us-main {
    padding: 5rem var(--space-md);
  }

  .contact-reach-us-grid {
    gap: 4rem;
  }

  .contact-reach-us-form-wrapper {
    flex: 0 1 auto;
    max-width: none;
  }

  .contact-reach-us-info-wrapper {
    flex: 0 1 auto;
  }
}

@media (max-width: 480px) {
  .contact-reach-us-hero {
    padding: 2rem var(--space-sm);
  }

  .contact-reach-us-main {
    padding: 2rem var(--space-sm);
  }

  .contact-reach-us-grid {
    gap: var(--space-2xl);
  }

  .contact-reach-us-input,
  .contact-reach-us-textarea {
    padding: var(--space-sm) var(--space-md);
    font-size: 16px;
  }

  .contact-reach-us-submit {
    padding: var(--space-md) var(--space-md);
  }

  .contact-reach-us-hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
}