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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-light: #ffffff;
  --color-text-primary-dark: #0a0f1e;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-light: #64748b;
  --color-text-muted-dark: #9ca3af;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #10b981;
  --color-secondary-hover: #059669;
  --color-accent-warm: #f59e0b;
  --color-accent-coral: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Merriweather', serif;
  
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --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;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  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);
  line-height: 1.8;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

strong {
  font-weight: var(--font-weight-bold);
}

em {
  font-style: italic;
}

.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 {
  width: 100%;
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-light);
}

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

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

.section--light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-dark);
}

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

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

.section--accent {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-dark);
}

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

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

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

.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;
  gap: var(--space-md);
}

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

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

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

.flex--wrap {
  flex-wrap: wrap;
}

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

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

.btn:active {
  transform: translateY(0);
}

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

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

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

.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);
  color: var(--color-text-primary-light);
}

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

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

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.card--dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-primary-light);
}

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

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

.card--elevated {
  box-shadow: var(--shadow-lg);
}

.card--no-shadow {
  box-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

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

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

.badge--danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-accent-coral);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

thead {
  background: var(--color-bg-tertiary);
  font-weight: var(--font-weight-semibold);
}

th {
  padding: var(--space-md);
  text-align: left;
  color: var(--color-text-primary-dark);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid #e2e8f0;
  color: var(--color-text-secondary-dark);
}

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

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  margin-bottom: var(--space-md);
}

.alert--info {
  background: rgba(37, 99, 235, 0.05);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}

.alert--success {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: var(--color-secondary);
  color: var(--color-secondary);
}

.alert--warning {
  background: rgba(245, 158, 11, 0.05);
  border-left-color: var(--color-accent-warm);
  color: var(--color-accent-warm);
}

.alert--danger {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: var(--color-accent-coral);
  color: var(--color-accent-coral);
}

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

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

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

code {
  font-family: 'Courier New', monospace;
  background: var(--color-bg-tertiary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--color-accent-coral);
}

pre {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

pre code {
  background: none;
  padding: 0;
  color: inherit;
}

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

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

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

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

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

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

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

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-semibold {
  font-weight: var(--font-weight-semibold);
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-wrap {
  white-space: normal;
  word-break: break-word;
}

.text-xs {
  font-size: var(--text-xs);
}

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

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

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

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

.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }
.m-2xl { margin: var(--space-2xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.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); }
.mt-2xl { margin-top: var(--space-2xl); }

.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); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }

.hidden { visibility: hidden; }
.visible { visibility: visible; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }

@media (max-width: 768px) {
  .d-md-none { display: none; }
}

@media (min-width: 769px) {
  .d-md-block { display: block; }
}

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.border {
  border: 1px solid #e2e8f0;
}

.border-top {
  border-top: 1px solid #e2e8f0;
}

.border-bottom {
  border-bottom: 1px solid #e2e8f0;
}

.border-primary {
  border-color: var(--color-primary);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

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

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

.bg-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-dark);
}

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

.bg-accent {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-dark);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fade-in var(--transition-base);
}

.animate-slide-up {
  animation: slide-up var(--transition-base);
}

.animate-slide-down {
  animation: slide-down var(--transition-base);
}

.animate-slide-left {
  animation: slide-left var(--transition-base);
}

.animate-slide-right {
  animation: slide-right var(--transition-base);
}

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

.animate-bounce {
  animation: bounce 1s infinite;
}

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  body {
    font-size: var(--text-sm);
  }
}
.header-dialogue-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: static;
  z-index: var(--z-sticky);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  overflow: hidden;
}

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

.header-dialogue-forge-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

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

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

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

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

.header-dialogue-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.header-dialogue-forge-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-primary-light);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base);
  white-space: nowrap;
}

.header-dialogue-forge-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-dialogue-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.header-dialogue-forge-mobile-toggle:hover {
  transform: scale(1.05);
}

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

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

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

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

.header-dialogue-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  z-index: calc(var(--z-sticky) - 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  padding-top: 80px;
}

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

.header-dialogue-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-bg-primary);
  z-index: calc(var(--z-sticky) + 1);
}

.header-dialogue-forge-mobile-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
}

.header-dialogue-forge-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-primary-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-dialogue-forge-mobile-close:hover {
  color: var(--color-primary);
}

.header-dialogue-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.header-dialogue-forge-mobile-link {
  display: block;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: all var(--transition-base);
}

.header-dialogue-forge-mobile-link:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary-light);
  padding-left: 2rem;
}

.header-dialogue-forge-mobile-cta {
  display: block;
  margin: 2rem 1.5rem 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-light);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base);
}

.header-dialogue-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

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

  .header-dialogue-forge-desktop-nav {
    display: flex;
  }

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

@media (min-width: 1024px) {
  .header-dialogue-forge-desktop-nav {
    gap: 2.5rem;
  }

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

  .header-dialogue-forge-cta-button {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

    .feedback-hub {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

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

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
}

.stat-label-index {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.8;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.card-icon-index {
  font-size: 2rem;
  color: #2563eb;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
}

.card-title-index {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.35rem);
  color: #0a0f1e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text-index {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-cards-index {
    flex-direction: column;
  }
  
  .benefit-card-index {
    flex: 1 1 100%;
  }
}

.process-section-index {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  min-width: 80px;
  line-height: 1;
}

.step-content-index {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-index {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-index {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-index {
    min-width: auto;
  }
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-link-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #2563eb;
  font-weight: 600;
  transition: color 0.3s ease;
}

.featured-link-index:hover {
  color: #1d4ed8;
}

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

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

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

.card-image-wrapper-index {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  background: #e2e8f0;
}

.card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.35rem);
  color: #0a0f1e;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.card-description-index {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.card-link-index {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.card-link-index:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .featured-cards-index {
    flex-direction: column;
  }
  
  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonials-section-index {
  background: #ffffff;
  color: #0a0f1e;
  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;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.8;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-top: 3px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-text-index {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: #334155;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.author-name-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #0a0f1e;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-grid-index {
    flex-direction: column;
  }
  
  .testimonial-card-index {
    flex: 1 1 100%;
  }
}

.faq-section-index {
  background: #f8fafc;
  color: #0a0f1e;
  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;
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.8;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question-index {
  font-size: clamp(1.05rem, 1.8vw + 0.5rem, 1.3rem);
  color: #0a0f1e;
  font-weight: 600;
  margin: 0;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

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

.cta-box-index {
  flex: 1 1 45%;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.cta-text-index {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

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

.cta-feature-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.cta-feature-index i {
  font-size: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-text-index {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .cta-content-index {
    flex-direction: column;
  }
  
  .cta-box-index,
  .cta-features-index {
    flex: 1 1 100%;
  }
}

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

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

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.about-text-index {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-cta-index {
  margin-top: 0.5rem;
}

.about-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
}

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

.cookie-btn-accept-index {
  padding: 0.6rem 1.5rem;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-decline-index {
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .cookie-banner-text-index {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

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

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

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

.btn-secondary:hover {
  background: #059669;
}

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

.btn-outline-light:hover {
  background: #ffffff;
  color: #0a0f1e;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d4ed8;
}

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

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

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

.footer-about {
  display: block;
}

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

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

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

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

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer-nav-list a,
.footer-legal-list a {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-copyright p {
  color: var(--color-text-muted-light);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.6;
  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(3rem, 6vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 300px;
  }

  .footer-nav {
    flex: 0 1 180px;
  }

  .footer-contact {
    flex: 0 1 220px;
  }

  .footer-legal {
    flex: 0 1 180px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
  }
}

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

  .footer-about {
    flex: 1 1 380px;
  }

  .footer-nav {
    flex: 0 1 160px;
  }

  .footer-contact {
    flex: 0 1 240px;
  }

  .footer-legal {
    flex: 0 1 160px;
  }
}
    

.category-page-constructive-feedback-techniques {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-block-category {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-category {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.hero-subtitle-category {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 650px;
}

.hero-highlight-category {
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.hero-highlight-text-category {
  color: #e0e7ff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

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

  .hero-subtitle-category {
    max-width: 100%;
  }
}

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

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

.posts-header-category {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-category {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.posts-subtitle-category {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-constructive-feedback-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.card-constructive-feedback-techniques:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.card-constructive-feedback-techniques img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-title-constructive-feedback-techniques {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  padding-top: 1rem;
  margin: 0;
}

.card-description-constructive-feedback-techniques {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin: 0;
}

.card-meta-constructive-feedback-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.meta-item-constructive-feedback-techniques {
  color: #94a3b8;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-constructive-feedback-techniques i {
  color: #2563eb;
  font-size: 0.875rem;
}

.card-link-constructive-feedback-techniques {
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.card-link-constructive-feedback-techniques:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .posts-grid-category {
    flex-direction: column;
    align-items: stretch;
  }

  .card-constructive-feedback-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.principles-header-category {
  text-align: center;
}

.principles-title-category {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 0;
}

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

.principle-item-category {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.principle-number-category {
  color: #2563eb;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: 'Merriweather', serif;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.principle-text-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.principle-heading-category {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0;
}

.principle-description-category {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

  .principle-number-category {
    text-align: left;
  }
}

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

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

.practical-header-category {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-title-category {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0;
}

.practical-intro-category {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.practical-steps-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-card-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.step-icon-category {
  color: #2563eb;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
}

.step-title-category {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0;
}

.step-text-category {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .practical-steps-category {
    flex-direction: column;
    align-items: stretch;
  }

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

  .principles-section-category {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .practical-section-category {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .card-constructive-feedback-techniques {
    transition: none;
  }
  
  .card-constructive-feedback-techniques:hover {
    transform: none;
  }
}

.main-active-listening-feedback {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-active-listening-feedback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  flex-wrap: wrap;
}

.breadcrumbs-active-listening-feedback a {
  color: #2563eb;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-active-listening-feedback a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-active-listening-feedback span {
  color: #cbd5e1;
}

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

.hero-content-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-active-listening-feedback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  flex-wrap: wrap;
}

.meta-item-active-listening-feedback {
  color: #64748b;
}

.meta-divider-active-listening-feedback {
  color: #cbd5e1;
}

.hero-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-active-listening-feedback {
  font-size: clamp(0.875rem, 1.2vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-img-active-listening-feedback {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-wrapper-active-listening-feedback {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-content-active-listening-feedback,
  .hero-image-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-lead-active-listening-feedback {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-body-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-img-active-listening-feedback {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-active-listening-feedback {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-text-active-listening-feedback,
  .intro-image-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.listening-image-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-text-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.listening-body-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.listening-highlight-active-listening-feedback {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e40af;
  line-height: 1.6;
  margin: 0;
}

.listening-img-active-listening-feedback {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .listening-content-active-listening-feedback {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .listening-image-active-listening-feedback,
  .listening-text-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-active-listening-feedback {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-active-listening-feedback {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.techniques-text-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-body-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-item-active-listening-feedback {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 250ms ease-in-out;
}

.technique-item-active-listening-feedback:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.technique-name-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-desc-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-img-active-listening-feedback {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  align-self: center;
}

@media (max-width: 768px) {
  .techniques-content-active-listening-feedback {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .techniques-text-active-listening-feedback,
  .techniques-image-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.application-section-active-listening-feedback {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.application-image-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-text-active-listening-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.application-body-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.application-quote-active-listening-feedback {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #92400e;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-active-listening-feedback {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #b45309;
  margin: 0;
}

.application-img-active-listening-feedback {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .application-content-active-listening-feedback {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .application-image-active-listening-feedback,
  .application-text-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.barriers-section-active-listening-feedback {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.barriers-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.barriers-intro-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.barriers-grid-active-listening-feedback {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.barrier-card-active-listening-feedback {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 280px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}

.barrier-card-active-listening-feedback:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.barrier-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.barrier-text-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.barriers-closing-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .barrier-card-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-active-listening-feedback {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-body-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-highlight-active-listening-feedback {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-label-active-listening-feedback {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  color: #047857;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.highlight-content-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #065f46;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-active-listening-feedback {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-active-listening-feedback {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-active-listening-feedback:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-image-active-listening-feedback {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-active-listening-feedback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease-in-out;
}

.related-card-active-listening-feedback:hover .related-img-active-listening-feedback {
  transform: scale(1.05);
}

.related-info-active-listening-feedback {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms ease-in-out;
  align-self: flex-start;
}

.related-link-active-listening-feedback:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-active-listening-feedback {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-active-listening-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-active-listening-feedback {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-active-listening-feedback {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-active-listening-feedback {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0c4a6e;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-active-listening-feedback {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #0c4a6e;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .disclaimer-content-active-listening-feedback {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

img {
  display: block;
}

a {
  transition: color 250ms ease-in-out;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

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

.main-timing-difficult-conversations {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.main-timing-difficult-conversations * {
  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-timing-difficult-conversations {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-timing-difficult-conversations {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description-timing-difficult-conversations {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}

.meta-item-timing-difficult-conversations {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

.meta-separator-timing-difficult-conversations {
  color: #64748b;
}

.hero-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-timing-difficult-conversations a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-timing-difficult-conversations a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-timing-difficult-conversations span {
  color: #64748b;
}

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

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

.intro-text-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.intro-paragraph-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.when-section-timing-difficult-conversations {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.when-text-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.when-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.when-paragraph-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.when-list-timing-difficult-conversations {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.when-list-item-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.when-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.when-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.red-flags-section-timing-difficult-conversations {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.red-flags-content-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.red-flags-title-timing-difficult-conversations {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
}

.red-flags-intro-timing-difficult-conversations {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.flags-wrapper-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.flags-text-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flag-item-timing-difficult-conversations {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

.flag-title-timing-difficult-conversations {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.flag-text-timing-difficult-conversations {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.flags-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.flags-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.prepare-section-timing-difficult-conversations {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.prepare-text-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.prepare-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.prepare-paragraph-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.prepare-steps-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.step-number-timing-difficult-conversations {
  color: #2563eb;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Merriweather', serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-timing-difficult-conversations {
  flex: 1;
}

.step-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.step-text-timing-difficult-conversations {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.prepare-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.prepare-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.during-section-timing-difficult-conversations {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.during-content-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

.during-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.during-intro-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.principles-grid-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-card-timing-difficult-conversations {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.principle-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.principle-text-timing-difficult-conversations {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.during-image-timing-difficult-conversations {
  flex: 1 1 50%;
  max-width: 50%;
}

.during-img-timing-difficult-conversations {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.summary-section-timing-difficult-conversations {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.summary-content-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-title-timing-difficult-conversations {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
}

.summary-intro-timing-difficult-conversations {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.checklist-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-item-timing-difficult-conversations {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(59, 130, 246, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 8px;
}

.check-icon-timing-difficult-conversations {
  color: #3b82f6;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.check-text-timing-difficult-conversations {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.summary-closing-timing-difficult-conversations {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

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

.disclaimer-content-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.disclaimer-box-timing-difficult-conversations {
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 10px;
}

.disclaimer-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-timing-difficult-conversations {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.8;
}

.related-section-timing-difficult-conversations {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-timing-difficult-conversations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.related-intro-timing-difficult-conversations {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  text-align: center;
}

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

.related-card-timing-difficult-conversations {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-timing-difficult-conversations:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.related-image-timing-difficult-conversations {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-timing-difficult-conversations {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-info-timing-difficult-conversations {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-timing-difficult-conversations {
  color: #0a0f1e;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.related-card-text-timing-difficult-conversations {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-timing-difficult-conversations,
  .intro-content-timing-difficult-conversations,
  .when-content-timing-difficult-conversations,
  .flags-wrapper-timing-difficult-conversations,
  .prepare-content-timing-difficult-conversations,
  .during-content-timing-difficult-conversations {
    flex-direction: column;
  }

  .hero-text-timing-difficult-conversations,
  .hero-image-timing-difficult-conversations,
  .intro-text-timing-difficult-conversations,
  .intro-image-timing-difficult-conversations,
  .when-text-timing-difficult-conversations,
  .when-image-timing-difficult-conversations,
  .flags-text-timing-difficult-conversations,
  .flags-image-timing-difficult-conversations,
  .prepare-text-timing-difficult-conversations,
  .prepare-image-timing-difficult-conversations,
  .during-image-timing-difficult-conversations {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principles-grid-timing-difficult-conversations {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-timing-difficult-conversations {
    min-width: 50px;
    font-size: 2rem;
  }

  .breadcrumbs-timing-difficult-conversations {
    margin-bottom: 1.5rem;
  }

  .hero-title-timing-difficult-conversations {
    margin-bottom: 1rem;
  }

  .hero-meta-timing-difficult-conversations {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-section-timing-difficult-conversations,
  .intro-section-timing-difficult-conversations,
  .when-section-timing-difficult-conversations,
  .red-flags-section-timing-difficult-conversations,
  .prepare-section-timing-difficult-conversations,
  .during-section-timing-difficult-conversations,
  .summary-section-timing-difficult-conversations,
  .disclaimer-section-timing-difficult-conversations,
  .related-section-timing-difficult-conversations {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-title-timing-difficult-conversations,
  .intro-title-timing-difficult-conversations,
  .when-title-timing-difficult-conversations,
  .red-flags-title-timing-difficult-conversations,
  .prepare-title-timing-difficult-conversations,
  .during-title-timing-difficult-conversations,
  .summary-title-timing-difficult-conversations,
  .related-title-timing-difficult-conversations {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .related-card-timing-difficult-conversations {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-timing-difficult-conversations {
    gap: 1rem;
  }

  .step-number-timing-difficult-conversations {
    min-width: 45px;
    font-size: 1.75rem;
  }
}

.main-feedback-methods-that-work {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-feedback-methods-that-work {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-feedback-methods-that-work {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-feedback-methods-that-work {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-feedback-methods-that-work {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-meta-feedback-methods-that-work {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.meta-item-feedback-methods-that-work {
  color: #64748b;
}

.meta-separator-feedback-methods-that-work {
  color: #475569;
}

.hero-img-feedback-methods-that-work {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-feedback-methods-that-work {
    flex-direction: column;
  }
  
  .hero-text-feedback-methods-that-work,
  .hero-image-feedback-methods-that-work {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.breadcrumbs-feedback-methods-that-work {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: 2rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.breadcrumbs-feedback-methods-that-work a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-feedback-methods-that-work a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-feedback-methods-that-work span {
  color: #475569;
}

.intro-section-feedback-methods-that-work {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-feedback-methods-that-work {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-highlight-feedback-methods-that-work {
  flex: 1 1 40%;
  max-width: 40%;
}

.intro-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-feedback-methods-that-work {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
}

.highlight-title-feedback-methods-that-work {
  font-size: 1.25rem;
  color: #0a0f1e;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight-list-feedback-methods-that-work {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-feedback-methods-that-work {
  font-size: 0.95rem;
  color: #374151;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-feedback-methods-that-work::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

@media (max-width: 768px) {
  .intro-content-feedback-methods-that-work {
    flex-direction: column;
  }
  
  .intro-text-feedback-methods-that-work,
  .intro-highlight-feedback-methods-that-work {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.content-one-section-feedback-methods-that-work {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-wrapper-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-one-text-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-one-paragraph-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-one-img-feedback-methods-that-work {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-feedback-methods-that-work {
    flex-direction: column;
  }
  
  .content-one-text-feedback-methods-that-work,
  .content-one-image-feedback-methods-that-work {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-one-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.content-two-section-feedback-methods-that-work {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-two-wrapper-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-two-text-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-two-paragraph-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-two-img-feedback-methods-that-work {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-two-wrapper-feedback-methods-that-work {
    flex-direction: column-reverse;
  }
  
  .content-two-text-feedback-methods-that-work,
  .content-two-image-feedback-methods-that-work {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-two-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.content-three-section-feedback-methods-that-work {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-wrapper-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-three-text-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-feedback-methods-that-work {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-three-paragraph-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-three-img-feedback-methods-that-work {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-three-wrapper-feedback-methods-that-work {
    flex-direction: column;
  }
  
  .content-three-text-feedback-methods-that-work,
  .content-three-image-feedback-methods-that-work {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-three-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.comparison-section-feedback-methods-that-work {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-content-feedback-methods-that-work {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.comparison-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.comparison-cards-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.comparison-card-feedback-methods-that-work {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.comparison-card-feedback-methods-that-work:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.card-title-feedback-methods-that-work {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.card-subtitle-feedback-methods-that-work {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

.card-text-feedback-methods-that-work {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.card-strength-feedback-methods-that-work {
  font-size: 0.9rem;
  color: #60a5fa;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .comparison-card-feedback-methods-that-work {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .comparison-card-feedback-methods-that-work {
    flex: 1 1 100%;
  }
  
  .comparison-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.tips-section-feedback-methods-that-work {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-feedback-methods-that-work {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.tips-wrapper-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-feedback-methods-that-work {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-card-feedback-methods-that-work:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tip-number-feedback-methods-that-work {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tip-card-title-feedback-methods-that-work {
  font-size: 1.25rem;
  color: #0a0f1e;
  font-weight: 700;
  margin: 0;
}

.tip-card-text-feedback-methods-that-work {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tip-card-feedback-methods-that-work {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tip-card-feedback-methods-that-work {
    flex: 1 1 100%;
  }
  
  .tips-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.conclusion-section-feedback-methods-that-work {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-feedback-methods-that-work {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.conclusion-text-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.conclusion-highlight-feedback-methods-that-work {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
}

.highlight-text-feedback-methods-that-work {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #0a0f1e;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.conclusion-closing-feedback-methods-that-work {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .conclusion-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

.disclaimer-section-feedback-methods-that-work {
  background: #0a0f1e;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-feedback-methods-that-work {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
}

.disclaimer-title-feedback-methods-that-work {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}

.disclaimer-text-feedback-methods-that-work {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-feedback-methods-that-work {
    padding: 1.5rem 0;
  }
}

.related-section-feedback-methods-that-work {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-feedback-methods-that-work {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-feedback-methods-that-work {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-cards-feedback-methods-that-work {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-feedback-methods-that-work {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-feedback-methods-that-work:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.related-image-feedback-methods-that-work {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-feedback-methods-that-work {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-feedback-methods-that-work {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-feedback-methods-that-work {
  font-size: 1.1rem;
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.related-card-desc-feedback-methods-that-work {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .related-card-feedback-methods-that-work {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-feedback-methods-that-work {
    flex: 1 1 100%;
  }
  
  .related-section-feedback-methods-that-work {
    padding: 2rem 0;
  }
}

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

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

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

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.main-delivering-feedback-with-empathy {
width: 100%;
overflow: hidden;
}

.hero-section-delivering-feedback-with-empathy {
background: #0a0f1e;
color: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.hero-text-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

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

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

.hero-meta-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: 0.75rem;
align-items: center;
flex-wrap: wrap;
}

.meta-item-delivering-feedback-with-empathy {
font-size: 0.875rem;
color: #94a3b8;
}

.meta-divider-delivering-feedback-with-empathy {
color: #475569;
}

.hero-image-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-delivering-feedback-with-empathy img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 12px;
display: block;
max-height: 450px;
}

@media (max-width: 768px) {
.hero-content-delivering-feedback-with-empathy {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-text-delivering-feedback-with-empathy,
.hero-image-delivering-feedback-with-empathy {
flex: 1 1 100%;
max-width: 100%;
}

.hero-title-delivering-feedback-with-empathy {
font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-subtitle-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}
}

.breadcrumbs-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: 0.5rem;
align-items: center;
flex-wrap: wrap;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: 0.875rem;
}

.breadcrumbs-delivering-feedback-with-empathy a {
color: #60a5fa;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-delivering-feedback-with-empathy a:hover {
color: #93c5fd;
text-decoration: underline;
}

.breadcrumbs-delivering-feedback-with-empathy span {
color: #64748b;
}

.intro-section-delivering-feedback-with-empathy {
background: #ffffff;
color: #1e293b;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.intro-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.intro-text-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-body-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-delivering-feedback-with-empathy img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 12px;
display: block;
max-height: 400px;
}

@media (max-width: 768px) {
.intro-content-delivering-feedback-with-empathy {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.intro-text-delivering-feedback-with-empathy,
.intro-image-delivering-feedback-with-empathy {
flex: 1 1 100%;
max-width: 100%;
}

.intro-title-delivering-feedback-with-empathy {
font-size: clamp(1.25rem, 3vw, 2rem);
}
}

.structure-section-delivering-feedback-with-empathy {
background: #f8fafc;
color: #1e293b;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.structure-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.structure-text-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.structure-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.structure-body-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.structure-highlight-delivering-feedback-with-empathy {
background: #e0e7ff;
padding: clamp(1rem, 2vw, 1.5rem);
border-left: 4px solid #2563eb;
border-radius: 8px;
margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #1e40af;
line-height: 1.6;
margin: 0;
}

.structure-image-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.structure-image-delivering-feedback-with-empathy img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 12px;
display: block;
max-height: 400px;
}

@media (max-width: 768px) {
.structure-content-delivering-feedback-with-empathy {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.structure-text-delivering-feedback-with-empathy,
.structure-image-delivering-feedback-with-empathy {
flex: 1 1 100%;
max-width: 100%;
}

.structure-title-delivering-feedback-with-empathy {
font-size: clamp(1.25rem, 3vw, 2rem);
}
}

.techniques-section-delivering-feedback-with-empathy {
background: #0a0f1e;
color: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.techniques-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #ffffff;
font-weight: 700;
line-height: 1.2;
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.techniques-grid-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.technique-card-delivering-feedback-with-empathy {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 280px;
background: rgba(255, 255, 255, 0.05);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
gap: 1rem;
transition: all 0.3s ease;
}

.technique-card-delivering-feedback-with-empathy:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-4px);
}

.technique-number-delivering-feedback-with-empathy {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: #60a5fa;
line-height: 1;
}

.technique-heading-delivering-feedback-with-empathy {
font-size: clamp(1.125rem, 2vw, 1.5rem);
color: #ffffff;
font-weight: 700;
margin-bottom: 0.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.technique-text-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 1rem;
}

.technique-example-delivering-feedback-with-empathy {
background: rgba(0, 0, 0, 0.3);
padding: clamp(1rem, 2vw, 1.5rem);
border-radius: 8px;
}

.example-label-delivering-feedback-with-empathy {
font-size: 0.875rem;
font-weight: 600;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.5rem;
display: block;
}

.example-text-delivering-feedback-with-empathy {
font-size: clamp(0.75rem, 0.9vw, 0.95rem);
color: #e2e8f0;
line-height: 1.6;
margin: 0;
font-style: italic;
}

@media (max-width: 1024px) {
.technique-card-delivering-feedback-with-empathy {
flex: 1 1 calc(50% - 1.5rem);
}
}

@media (max-width: 768px) {
.technique-card-delivering-feedback-with-empathy {
flex: 1 1 100%;
min-width: unset;
}
}

.timing-section-delivering-feedback-with-empathy {
background: #ffffff;
color: #1e293b;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.timing-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.timing-image-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.timing-image-delivering-feedback-with-empathy img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 12px;
display: block;
max-height: 400px;
}

.timing-text-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.timing-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.timing-body-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
.timing-content-delivering-feedback-with-empathy {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.timing-image-delivering-feedback-with-empathy,
.timing-text-delivering-feedback-with-empathy {
flex: 1 1 100%;
max-width: 100%;
order: 0;
}

.timing-title-delivering-feedback-with-empathy {
font-size: clamp(1.25rem, 3vw, 2rem);
}
}

.language-section-delivering-feedback-with-empathy {
background: #f8fafc;
color: #1e293b;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.language-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.language-text-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.language-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.language-body-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.8;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.language-comparison-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

.comparison-item-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: clamp(1rem, 2vw, 1.5rem);
background: #ffffff;
border-radius: 8px;
border-left: 4px solid #ef4444;
}

.comparison-bad-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #7f1d1d;
margin: 0;
}

.comparison-good-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #166534;
margin: 0;
}

.language-image-delivering-feedback-with-empathy {
flex: 1 1 50%;
max-width: 50%;
}

.language-image-delivering-feedback-with-empathy img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 12px;
display: block;
max-height: 400px;
}

@media (max-width: 768px) {
.language-content-delivering-feedback-with-empathy {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.language-text-delivering-feedback-with-empathy,
.language-image-delivering-feedback-with-empathy {
flex: 1 1 100%;
max-width: 100%;
}

.language-title-delivering-feedback-with-empathy {
font-size: clamp(1.25rem, 3vw, 2rem);
}
}

.conclusion-section-delivering-feedback-with-empathy {
background: #0a0f1e;
color: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #ffffff;
font-weight: 700;
line-height: 1.2;
text-align: center;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-formula-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.formula-step-delivering-feedback-with-empathy {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2rem);
align-items: flex-start;
}

.formula-number-delivering-feedback-with-empathy {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 800;
color: #60a5fa;
line-height: 1;
min-width: 60px;
}

.formula-text-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #cbd5e1;
line-height: 1.8;
margin: 0;
}

.conclusion-final-delivering-feedback-with-empathy {
font-size: clamp(1rem, 1.5vw, 1.25rem);
color: #e2e8f0;
text-align: center;
line-height: 1.8;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-style: italic;
}

.conclusion-quote-delivering-feedback-with-empathy {
padding: clamp(1.5rem, 3vw, 2.5rem);
background: rgba(255, 255, 255, 0.05);
border-left: 4px solid #60a5fa;
border-radius: 8px;
}

.quote-text-delivering-feedback-with-empathy {
font-size: clamp(1rem, 1.5vw, 1.25rem);
color: #f1f5f9;
line-height: 1.8;
margin: 0;
font-style: italic;
}

@media (max-width: 768px) {
.formula-step-delivering-feedback-with-empathy {
flex-direction: column;
gap: 1rem;
align-items: center;
text-align: center;
}

.formula-number-delivering-feedback-with-empathy {
min-width: unset;
}
}

.disclaimer-section-delivering-feedback-with-empathy {
background: #f8fafc;
color: #1e293b;
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-delivering-feedback-with-empathy {
background: #ffffff;
border-left: 4px solid #2563eb;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 1rem;
}

.disclaimer-icon-delivering-feedback-with-empathy {
font-size: clamp(1.5rem, 3vw, 2rem);
line-height: 1;
}

.disclaimer-title-delivering-feedback-with-empathy {
font-size: clamp(1.125rem, 2vw, 1.5rem);
color: #0a0f1e;
font-weight: 700;
margin-bottom: 0.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.disclaimer-text-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #475569;
line-height: 1.8;
margin: 0;
}

.related-section-delivering-feedback-with-empathy {
background: #ffffff;
color: #1e293b;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-content-delivering-feedback-with-empathy {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.related-title-delivering-feedback-with-empathy {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.2;
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
overflow-wrap: break-word;
}

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

.related-card-delivering-feedback-with-empathy {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 280px;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
gap: 1.25rem;
padding: clamp(1.5rem, 2vw, 2rem);
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-card-delivering-feedback-with-empathy:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
transform: translateY(-4px);
}

.related-image-delivering-feedback-with-empathy {
width: 100%;
height: auto;
overflow: hidden;
border-radius: 8px;
aspect-ratio: 3 / 2;
}

.related-image-delivering-feedback-with-empathy img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

.related-card-delivering-feedback-with-empathy:hover .related-image-delivering-feedback-with-empathy img {
transform: scale(1.05);
}

.related-card-title-delivering-feedback-with-empathy {
font-size: clamp(1rem, 1.5vw, 1.25rem);
color: #0a0f1e;
font-weight: 700;
line-height: 1.4;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-card-text-delivering-feedback-with-empathy {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #475569;
line-height: 1.6;
margin: 0;
}

.related-link-delivering-feedback-with-empathy {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #2563eb;
text-decoration: none;
font-weight: 600;
font-size: clamp(0.875rem, 1vw, 1rem);
transition: color 0.3s ease;
margin-top: 0.5rem;
}

.related-link-delivering-feedback-with-empathy:hover {
color: #1d4ed8;
text-decoration: underline;
}

@media (max-width: 1024px) {
.related-card-delivering-feedback-with-empathy {
flex: 1 1 calc(50% - 1.5rem);
}
}

@media (max-width: 768px) {
.related-card-delivering-feedback-with-empathy {
flex: 1 1 100%;
min-width: unset;
}
}

@media (max-width: 480px) {
.hero-section-delivering-feedback-with-empathy,
.intro-section-delivering-feedback-with-empathy,
.structure-section-delivering-feedback-with-empathy,
.techniques-section-delivering-feedback-with-empathy,
.language-section-delivering-feedback-with-empathy,
.timing-section-delivering-feedback-with-empathy,
.conclusion-section-delivering-feedback-with-empathy,
.disclaimer-section-delivering-feedback-with-empathy,
.related-section-delivering-feedback-with-empathy {
padding: clamp(2rem, 5vw, 3rem) 0;
}
}

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

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, 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;
}

.feedback-mastery-about {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-dark);
}

.hero-dialogue-section-about {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.hero-dialogue-subtitle-about {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  min-width: 140px;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
  font-weight: 600;
}

.hero-visual-dialogue-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.craft-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.craft-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.craft-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.craft-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.craft-block-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.craft-block-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
}

.craft-block-title-about {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
}

.craft-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.approach-section-about {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.approach-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.approach-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
}

.card-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.values-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.values-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: var(--radius-lg);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  font-style: normal;
  font-weight: 600;
}

.values-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.value-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.value-label-about {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.expertise-section-about {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.expertise-visual-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1rem;
  }

  .stat-item-about {
    min-width: 120px;
    padding: 1rem;
  }

  .craft-block-about {
    padding: 1.25rem;
  }

  .approach-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .values-list-about {
    gap: 1rem;
  }

  .value-item-about {
    padding: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .approach-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1025px) {
  .approach-card-about {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-secondary-light);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }
}

.service-card {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
  color: var(--color-text-primary-light);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.3rem, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-regular);
  flex-grow: 1;
}

.service-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card__topics li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  padding-left: var(--space-lg);
  position: relative;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
}

.service-card__topics li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.services-cta__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-regular);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card-dark);
}

.portfolio-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-text-secondary-light);
  margin: 0;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-light);
  background-color: rgba(59, 130, 246, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  flex: 1;
}

.portfolio-card-meta {
  display: flex;
  gap: var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-muted-light);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card-image {
    height: 320px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-text-secondary-dark);
}

.portfolio-cta-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
}

.portfolio-cta-content {
  width: 100%;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  background-color: var(--color-primary);
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta-container {
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.feedback-legal {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
}

.feedback-legal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.feedback-legal .feedback-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.feedback-legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.feedback-legal .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.feedback-legal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.feedback-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
}

.feedback-legal ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  list-style-position: outside;
}

.feedback-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
}

.feedback-legal strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-dark);
}

.feedback-legal .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
}

.feedback-legal .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-dark);
}

.feedback-legal .contact-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary-dark);
}

.feedback-legal .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feedback-legal .feedback-legal-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .feedback-legal .feedback-legal-content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-light: #ffffff;
  --color-text-primary-light: #ffffff;
  --color-text-primary-dark: #0a0f1e;
  --color-text-secondary-dark: #64748b;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #10b981;
  --color-secondary-hover: #059669;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Merriweather', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-lg: 12px;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-base: 250ms ease-in-out;
}

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

html, body {
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg-secondary);
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-you-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-you-icon svg {
  display: block;
  animation: checkmark 0.6s ease-out;
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.thank-you-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.thank-you-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.thank-you-highlight {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  animation: slideInLeft 0.7s ease-out 0.2s both;
}

.thank-you-highlight-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-lg);
  animation: slideInUp 0.7s ease-out 0.3s both;
}

.btn-return:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.2);
}

.btn-return:active {
  transform: translateY(-1px);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkmark {
  0% {
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
  }
  100% {
    stroke-dasharray: 170;
    stroke-dashoffset: 0;
  }
}

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

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

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-2xl);
  }

  .thank-you-highlight {
    padding: var(--space-xl) var(--space-2xl);
  }

  .btn-return {
    padding: 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-you-content {
    animation: fadeInUp 1s ease-out;
  }

  .thank-you-icon {
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  animation: float 6s ease-in-out infinite;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 30vw, 250px);
  height: clamp(150px, 30vw, 250px);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

.error-decoration::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.error-message {
  margin-bottom: var(--space-2xl);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-tips {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tip-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  justify-content: center;
}

.tip-icon {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

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

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-tips {
    padding: var(--space-xl);
  }

  .tip-item {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-code {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .error-decoration {
    width: clamp(180px, 35vw, 300px);
    height: clamp(180px, 35vw, 300px);
  }

  .error-tips {
    padding: var(--space-xl) var(--space-2xl);
  }

  .tip-item {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-code {
    font-size: clamp(6rem, 20vw, 8rem);
  }

  .error-decoration {
    width: 280px;
    height: 280px;
  }

  .error-tips {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    padding: calc(var(--space-sm) + 0.25rem) var(--space-xl);
    font-size: 1.05rem;
  }

  .btn-primary:hover {
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-visual {
    animation: none;
  }

  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-write-to-us {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-light);
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.contact-write-to-us-hero {
  background: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-write-to-us-hero-content {
  text-align: center;
}

.contact-write-to-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.contact-write-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-write-to-us-main {
  background: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-write-to-us-main {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: var(--space-4xl) 0 var(--space-3xl) 0;
  }
}

.contact-write-to-us-main-content {
  width: 100%;
}

.contact-write-to-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .contact-write-to-us-grid {
    gap: var(--space-4xl);
  }
}

.contact-write-to-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-write-to-us-form-wrapper {
    flex: 1 1 45%;
    min-width: 400px;
  }
}

.contact-write-to-us-form-header {
  margin-bottom: var(--space-2xl);
}

.contact-write-to-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.contact-write-to-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-write-to-us-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  display: block;
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary-light);
  transition: all var(--transition-base);
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-write-to-us-form-privacy {
  margin-top: var(--space-lg);
}

.contact-write-to-us-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: var(--font-weight-semibold);
}

.contact-write-to-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
}

.contact-write-to-us-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-write-to-us-submit:active {
  transform: translateY(0);
}

.contact-write-to-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-write-to-us-info-wrapper {
    flex: 1 1 45%;
    min-width: 400px;
  }
}

.contact-write-to-us-info-header {
  margin-bottom: var(--space-2xl);
}

.contact-write-to-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.contact-write-to-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.contact-write-to-us-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-write-to-us-info-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-write-to-us-info-content {
  flex: 1;
  min-width: 0;
}

.contact-write-to-us-info-item-title {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-xs) 0;
}

.contact-write-to-us-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-info-box {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-write-to-us-info-box-title {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
}

.contact-write-to-us-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-benefits {
  background: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .contact-write-to-us-benefits {
    padding: var(--space-4xl) 0;
  }
}

.contact-write-to-us-benefits-content {
  width: 100%;
}

.contact-write-to-us-benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary-light);
  text-align: center;
  margin: 0 0 var(--space-3xl) 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .contact-write-to-us-benefits-title {
    margin-bottom: var(--space-4xl);
  }
}

.contact-write-to-us-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-write-to-us-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.contact-write-to-us-benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.contact-write-to-us-benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.contact-write-to-us-benefit-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  display: block;
}

.contact-write-to-us-benefit-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
}

.contact-write-to-us-benefit-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .contact-write-to-us-grid {
    flex-direction: column;
  }

  .contact-write-to-us-form-wrapper,
  .contact-write-to-us-info-wrapper {
    flex: 1 1 100%;
    min-width: auto;
  }
}