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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #0d9488;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 8vw, 5rem);
  height: clamp(3rem, 8vw, 5rem);
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
}

.card-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.card-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  font-size: 1rem;
  font-family: var(--font-primary);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

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

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

label {
  font-weight: 500;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

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

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

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

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

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
:root {
    --color-bg-primary: #f9fafb;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-secondary: #0d9488;
    --color-accent-warm: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

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

  .header-typographic-studio {
    position: relative;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    width: 100%;
  }

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

  .header-typographic-studio-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: opacity 300ms ease;
  }

  .header-typographic-studio-brand:hover {
    opacity: 0.8;
  }

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

  .header-typographic-studio-logo-text {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  .header-typographic-studio-nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    transition: color 300ms ease;
    position: relative;
    padding-bottom: 0.25rem;
  }

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

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

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

  .header-typographic-studio-cta-button {
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    white-space: nowrap;
  }

  .header-typographic-studio-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
  }

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

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

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

  .header-typographic-studio-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 300ms ease;
  }

  .header-typographic-studio-mobile-toggle[aria-expanded="true"] .header-typographic-studio-hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .header-typographic-studio-mobile-toggle[aria-expanded="true"] .header-typographic-studio-hamburger:nth-child(2) {
    opacity: 0;
  }

  .header-typographic-studio-mobile-toggle[aria-expanded="true"] .header-typographic-studio-hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-typographic-studio-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    padding-top: 70px;
    overflow-y: auto;
  }

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

  .header-typographic-studio-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 5vw, 2rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

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

  .header-typographic-studio-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }

  .header-typographic-studio-mobile-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 5vw, 2rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 300ms ease;
  }

  .header-typographic-studio-mobile-link:hover {
    color: var(--color-primary);
    background: rgba(5, 150, 105, 0.05);
    padding-left: clamp(1.5rem, 5vw, 2.5rem);
  }

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

  .header-typographic-studio-mobile-cta-wrapper {
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 5vw, 2rem);
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-typographic-studio-mobile-cta {
    display: block;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 600;
    text-align: center;
    transition: all 300ms ease;
  }

  .header-typographic-studio-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
  }

  .header-typographic-studio-mobile-cta:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

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

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

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

  @media (max-width: 768px) {
    .header-typographic-studio-desktop-nav {
      display: none;
    }

    .header-typographic-studio-mobile-toggle {
      display: flex;
    }
  }

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

    

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

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

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

.hero-gradient-mesh {
  position: absolute;
  bottom: 5%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
  animation: float 7s ease-in-out infinite reverse;
}

.hero-light-orb {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape {
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(13, 148, 136, 0.04);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

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

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

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

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

.hero-stat-item {
  flex: 0 1 auto;
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
  line-height: 1;
}

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

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

.hero-cta-buttons .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

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

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

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

.featured-shape-1 {
  position: absolute;
  top: 5%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-line {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-blob {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(13, 148, 136, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-float-panel {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 160px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

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

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

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

.featured-card-link {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  display: inline-block;
  margin-top: auto;
}

.featured-card-link:hover {
  color: #047857;
}

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

@media (min-width: 768px) {
  .featured-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.learning-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.learning-shape-accent {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.learning-gradient-field {
  position: absolute;
  bottom: 5%;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.learning-glow-1 {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.learning-glow-2 {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

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

.learning-float-element {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 140px;
  height: 140px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 20px;
  transform: rotate(25deg);
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.learning-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.learning-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease;
}

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

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

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

.learning-step-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

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

@media (min-width: 768px) {
  .learning-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

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

.concepts-blob-1 {
  position: absolute;
  top: 8%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.concepts-blob-2 {
  position: absolute;
  bottom: 5%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.concepts-glow {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.concepts-accent-shape {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.concepts-float-panel {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
}

.concepts-line {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.concepts-corner-accent {
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 15px;
  transform: rotate(20deg);
  z-index: 1;
  pointer-events: none;
}

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

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

.concepts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.concepts-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

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

.concepts-card {
  flex: 1 1 260px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.concepts-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.concepts-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

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

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

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

@media (min-width: 768px) {
  .concepts-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
}

.testimonial-shape-1 {
  position: absolute;
  top: 10%;
  right: -90px;
  width: 320px;
  height: 320px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-glow {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-float {
  position: absolute;
  bottom: 8%;
  right: 10%;
  width: 130px;
  height: 130px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.testimonial-line-accent {
  position: absolute;
  top: 20%;
  right: 25%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.testimonial-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.testimonial-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

.testimonial-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 2rem;
}

.testimonial-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  transition: all 300ms ease;
}

.testimonial-benefit-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.testimonial-benefit-icon {
  color: #059669;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-benefit-text {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .testimonial-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

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

.resources-shape-1 {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.resources-shape-2 {
  position: absolute;
  bottom: 8%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.resources-gradient {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.resources-glow-1 {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.resources-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

.resources-accent-line {
  position: absolute;
  top: 25%;
  left: 12%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.resources-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.resources-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

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

.resources-block {
  flex: 1 1 300px;
  max-width: 420px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 300ms ease;
}

.resources-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.resources-block-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.resources-block-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.resources-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-block-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.resources-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 600;
}

@media (max-width: 768px) {
  .resources-block {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .resources-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.contact-shape-1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-blob {
  position: absolute;
  top: 25%;
  left: 10%;
  width: 220px;
  height: 220px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.contact-line {
  position: absolute;
  top: 20%;
  right: 30%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-float-panel {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 2;
  pointer-events: none;
}

.contact-corner-accent {
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 18px;
  transform: rotate(-20deg);
  z-index: 1;
  pointer-events: none;
}

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

.contact-form-wrapper {
  flex: 1 1 400px;
  min-width: 0;
}

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

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

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

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  font-size: 1rem;
  font-family: var(--font-primary);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: #1e293b;
  transition: all 300ms ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.contact-submit:active {
  transform: translateY(0px);
}

.contact-info {
  flex: 1 1 400px;
  min-width: 0;
}

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

.contact-faq-item {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 300ms ease;
}

.contact-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.contact-faq-question {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .contact-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

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

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 250px;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 1 auto;
}

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

.cookie-btn-accept {
  background: #059669;
  color: #000000;
}

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

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

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

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .hero-section,
  .featured-section,
  .learning-section,
  .concepts-section,
  .testimonial-section,
  .resources-section,
  .contact-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section,
  .featured-section,
  .learning-section,
  .concepts-section,
  .testimonial-section,
  .resources-section,
  .contact-section {
    padding: 8rem 0;
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

button {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

    
.footer {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  margin-top: 0;
}

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

.footer-content {
  display: block;
}

.footer-about {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

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

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.footer-column {
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-column-title {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
}

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

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

.footer-contact {
  display: block;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
  padding: 0;
}

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
}

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

  .footer-about {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .footer-about-title {
    font-size: 1.25rem;
  }

  .footer-about-text {
    font-size: 0.9375rem;
  }

  .footer-sections {
    gap: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .footer-column {
    flex: 1 1 220px;
  }

  .footer-column-title {
    font-size: 1.125rem;
  }

  .footer-nav-link,
  .footer-legal-link {
    font-size: 0.9375rem;
  }

  .footer-contact-item {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0 3rem 0;
  }

  .footer-about {
    margin-bottom: 4rem;
  }

  .footer-about-title {
    font-size: 1.375rem;
  }

  .footer-about-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .footer-sections {
    gap: 4rem;
    margin-bottom: 4.5rem;
  }

  .footer-column {
    flex: 1 1 240px;
  }

  .footer-column-title {
    font-size: 1.1875rem;
    margin-bottom: 1.5rem;
  }

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

  .footer-nav-link,
  .footer-legal-link {
    font-size: 0.9375rem;
  }

  .footer-contact-item {
    font-size: 0.9375rem;
  }

  .footer-copyright {
    padding-top: 3rem;
  }
}

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}
    

.category-page-typography-color {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-deco-glow-typography-color {
  position: absolute;
  top: 5%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-typography-color {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-typography-color {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-typography-color {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-description-typography-color {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.stat-number-typography-color {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-typography-color {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-buttons-typography-color .btn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
}

.hero-buttons-typography-color .btn-primary {
  background: #059669;
  color: #ffffff;
}

.hero-buttons-typography-color .btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
}

.hero-buttons-typography-color .btn-outline {
  border-color: #059669;
  color: #059669;
}

.hero-buttons-typography-color .btn-outline:hover {
  background: #059669;
  color: #ffffff;
}

.posts-section-typography-color {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f9fafb;
}

.posts-header-typography-color {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.posts-tag-typography-color {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.posts-title-typography-color {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

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

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

.card-typography-color {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.card-image-typography-color {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.card-typography-color:hover .card-image-typography-color {
  transform: scale(1.03);
}

.card-title-typography-color {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  font-family: var(--font-heading);
  margin: 0;
}

.card-description-typography-color {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-typography-color {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-typography-color {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-typography-color i {
  font-size: 0.875rem;
}

.card-link-typography-color {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-link-typography-color:hover {
  background: #047857;
  transform: translateX(4px);
}

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

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

.learning-header-typography-color {
  margin-bottom: clamp(3rem, 8vw, 4rem);
}

.learning-title-typography-color {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.learning-subtitle-typography-color {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
}

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

.learning-step-typography-color {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-typography-color:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.learning-step-number-typography-color {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  font-family: var(--font-heading);
}

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

.learning-step-title-typography-color {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: var(--font-heading);
}

.learning-step-text-typography-color {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.insights-section-typography-color {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.insights-content-typography-color {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-typography-color {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 8px;
}

.quote-text-typography-color {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

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

.insights-note-typography-color {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.insights-note-title-typography-color {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.insights-note-text-typography-color {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-typography-color {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-section-typography-color {
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .learning-path-section-typography-color {
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .insights-section-typography-color {
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .hero-stats-typography-color {
    gap: clamp(3rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .card-typography-color {
    flex: 1 1 350px;
    max-width: 450px;
  }
}

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

.card-link-typography-color:focus-visible,
.btn:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.meta-badge-typography-color:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.main-typographic-hierarchy-practice {
  width: 100%;
  background: #f9fafb;
}

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

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

.hero-text-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-typographic-hierarchy-practice {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.hero-title-typographic-hierarchy-practice {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.hero-description-typographic-hierarchy-practice {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
}

.hero-meta-typographic-hierarchy-practice {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-typographic-hierarchy-practice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.breadcrumbs-typographic-hierarchy-practice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-typographic-hierarchy-practice a {
  color: #059669;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-typographic-hierarchy-practice a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.breadcrumbs-typographic-hierarchy-practice span {
  color: #9ca3af;
}

.breadcrumbs-typographic-hierarchy-practice span:last-child {
  color: #4b5563;
  font-weight: 500;
}

.intro-section-typographic-hierarchy-practice {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-image-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-typographic-hierarchy-practice {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.intro-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.intro-description-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.principles-header-typographic-hierarchy-practice {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.principles-subtitle-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.principles-text-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principles-image-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-image-typographic-hierarchy-practice {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.principles-heading-typographic-hierarchy-practice {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: #111827;
}

.principles-description-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.contrast-section-typographic-hierarchy-practice {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.contrast-image-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-image-typographic-hierarchy-practice {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contrast-text-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contrast-heading-typographic-hierarchy-practice {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: #111827;
}

.contrast-description-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.spacing-header-typographic-hierarchy-practice {
  text-align: center;
  margin-bottom: 3rem;
}

.spacing-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.spacing-subtitle-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.spacing-card-typographic-hierarchy-practice {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spacing-card-typographic-hierarchy-practice:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.spacing-card-icon-typographic-hierarchy-practice {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.25rem;
}

.spacing-card-title-typographic-hierarchy-practice {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.spacing-card-text-typographic-hierarchy-practice {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.practice-section-typographic-hierarchy-practice {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-text-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-image-block-typographic-hierarchy-practice {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-typographic-hierarchy-practice {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.practice-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.practice-description-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.conclusion-header-typographic-hierarchy-practice {
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.conclusion-content-typographic-hierarchy-practice {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-quote-typographic-hierarchy-practice {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f3f4f6;
  border-radius: 8px;
}

.quote-text-typographic-hierarchy-practice {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  line-height: 1.6;
  margin: 0;
}

.conclusion-description-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.conclusion-key-points-typographic-hierarchy-practice {
  background: rgba(5, 150, 105, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.key-points-title-typographic-hierarchy-practice {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.key-points-list-typographic-hierarchy-practice {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.key-point-item-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.key-point-item-typographic-hierarchy-practice::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.disclaimer-section-typographic-hierarchy-practice {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-typographic-hierarchy-practice {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.disclaimer-title-typographic-hierarchy-practice {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-typographic-hierarchy-practice {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-typographic-hierarchy-practice {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-typographic-hierarchy-practice {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-typographic-hierarchy-practice {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-typographic-hierarchy-practice:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-typographic-hierarchy-practice {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-typographic-hierarchy-practice {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-typographic-hierarchy-practice {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-typographic-hierarchy-practice {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .hero-content-typographic-hierarchy-practice,
  .intro-content-typographic-hierarchy-practice,
  .principles-content-typographic-hierarchy-practice,
  .contrast-content-typographic-hierarchy-practice,
  .practice-content-typographic-hierarchy-practice {
    flex-direction: column;
  }

  .hero-text-block-typographic-hierarchy-practice,
  .hero-image-block-typographic-hierarchy-practice,
  .intro-text-block-typographic-hierarchy-practice,
  .intro-image-block-typographic-hierarchy-practice,
  .principles-text-block-typographic-hierarchy-practice,
  .principles-image-block-typographic-hierarchy-practice,
  .contrast-image-block-typographic-hierarchy-practice,
  .contrast-text-block-typographic-hierarchy-practice,
  .practice-text-block-typographic-hierarchy-practice,
  .practice-image-block-typographic-hierarchy-practice {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .spacing-card-typographic-hierarchy-practice {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-typographic-hierarchy-practice {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-color-harmony-psychology {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.breadcrumbs-color-harmony-psychology {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-color-harmony-psychology a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-color-harmony-psychology a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.hero-section-color-harmony-psychology {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-title-color-harmony-psychology {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle-color-harmony-psychology {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta-color-harmony-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-color-harmony-psychology {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-color-harmony-psychology i {
  font-size: 0.875rem;
}

.hero-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-block-color-harmony-psychology,
  .hero-image-block-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-color-harmony-psychology {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-color-harmony-psychology {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-color-harmony-psychology {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

  .intro-text-column-color-harmony-psychology,
  .intro-image-column-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.section-header-color-harmony-psychology {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-color-harmony-psychology {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.theory-title-color-harmony-psychology,
.harmony-title-color-harmony-psychology,
.psychology-title-color-harmony-psychology,
.contrast-title-color-harmony-psychology,
.implementation-title-color-harmony-psychology {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.theory-subtitle-color-harmony-psychology,
.harmony-subtitle-color-harmony-psychology,
.psychology-subtitle-color-harmony-psychology,
.contrast-subtitle-color-harmony-psychology,
.implementation-subtitle-color-harmony-psychology {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.theory-section-color-harmony-psychology {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.theory-text-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.theory-image-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.theory-h3-color-harmony-psychology {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.theory-text-color-harmony-psychology {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.color-principle-card-color-harmony-psychology {
  background: rgba(5, 150, 105, 0.08);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: 1.5rem;
}

.principle-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.principle-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.theory-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .theory-content-color-harmony-psychology {
    flex-direction: column;
  }

  .theory-text-column-color-harmony-psychology,
  .theory-image-column-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.harmony-section-color-harmony-psychology {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.harmony-cards-color-harmony-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.harmony-card-color-harmony-psychology {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.harmony-card-icon-color-harmony-psychology {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.harmony-card-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.harmony-card-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.harmony-details-color-harmony-psychology {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.harmony-details-text-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmony-details-image-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmony-details-title-color-harmony-psychology {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.harmony-details-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.harmony-details-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .harmony-cards-color-harmony-psychology {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .harmony-card-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: none;
  }

  .harmony-details-color-harmony-psychology {
    flex-direction: column;
  }

  .harmony-details-text-color-harmony-psychology,
  .harmony-details-image-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.psychology-section-color-harmony-psychology {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.psychology-content-color-harmony-psychology {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.psychology-text-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-image-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.featured-quote-color-harmony-psychology {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(5, 150, 105, 0.05);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-lg);
}

.quote-text-color-harmony-psychology {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-color-harmony-psychology {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.color-meanings-color-harmony-psychology {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.color-meaning-item-color-harmony-psychology {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.meaning-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.meaning-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.psychology-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

  .psychology-text-column-color-harmony-psychology,
  .psychology-image-column-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.contrast-section-color-harmony-psychology {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contrast-content-color-harmony-psychology {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.contrast-text-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-image-column-color-harmony-psychology {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-h3-color-harmony-psychology {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.contrast-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contrast-list-color-harmony-psychology {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.list-item-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-color-harmony-psychology::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.contrast-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.tools-section-color-harmony-psychology {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e5e7eb;
}

.tools-title-color-harmony-psychology {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.tools-subtitle-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.tools-list-color-harmony-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tool-item-color-harmony-psychology {
  flex: 1 1 280px;
  padding: 1rem;
  background: rgba(5, 150, 105, 0.05);
  border-radius: var(--radius-md);
}

.tool-name-color-harmony-psychology {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.tool-description-color-harmony-psychology {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .contrast-content-color-harmony-psychology {
    flex-direction: column;
  }

  .contrast-text-column-color-harmony-psychology,
  .contrast-image-column-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-list-color-harmony-psychology {
    flex-direction: column;
  }

  .tool-item-color-harmony-psychology {
    flex: 1 1 100%;
  }
}

.implementation-section-color-harmony-psychology {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.steps-container-color-harmony-psychology {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.step-item-color-harmony-psychology {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.step-item-color-harmony-psychology:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-number-color-harmony-psychology {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 60px;
  line-height: 1;
}

.step-content-color-harmony-psychology {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.implementation-image-section-color-harmony-psychology {
  display: flex;
  justify-content: center;
}

.implementation-image-color-harmony-psychology {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

@media (max-width: 768px) {
  .step-item-color-harmony-psychology {
    flex-direction: column;
  }

  .step-number-color-harmony-psychology {
    min-width: auto;
  }
}

.conclusion-section-color-harmony-psychology {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-color-harmony-psychology {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-color-harmony-psychology {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-color-harmony-psychology {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.key-takeaways-color-harmony-psychology {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(5, 150, 105, 0.05);
  border-radius: var(--radius-lg);
  text-align: left;
}

.takeaways-title-color-harmony-psychology {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.takeaways-list-color-harmony-psychology {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaway-item-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.takeaway-item-color-harmony-psychology::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.disclaimer-section-color-harmony-psychology {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-color-harmony-psychology {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

.disclaimer-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-color-harmony-psychology {
  font-size: 0.9375rem;
  color: #b45309;
  line-height: 1.6;
}

.related-section-color-harmony-psychology {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-title-color-harmony-psychology {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-color-harmony-psychology {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-cards-color-harmony-psychology {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-color-harmony-psychology {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.667rem));
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.related-card-image-color-harmony-psychology {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.related-card-content-color-harmony-psychology {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
}

.related-card-title-color-harmony-psychology {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-text-color-harmony-psychology {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1;
}

.related-card-link-color-harmony-psychology {
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-color-harmony-psychology:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .related-card-color-harmony-psychology {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

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

@media (max-width: 768px) {
  .breadcrumbs-color-harmony-psychology {
    font-size: 0.75rem;
  }

  .steps-container-color-harmony-psychology {
    gap: 1rem;
  }

  .step-item-color-harmony-psychology {
    padding: 1rem;
  }

  .step-number-color-harmony-psychology {
    font-size: 1.5rem;
  }

  .harmony-cards-color-harmony-psychology {
    gap: 1rem;
  }

  .harmony-card-color-harmony-psychology {
    flex: 1 1 100%;
    max-width: none;
  }

  .color-meanings-color-harmony-psychology {
    gap: 1rem;
  }

  .color-meaning-item-color-harmony-psychology {
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .harmony-cards-color-harmony-psychology {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .harmony-card-color-harmony-psychology {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: 400px;
  }
}

.main-contrast-accessibility-color-design {
  width: 100%;
}

.hero-section-contrast-accessibility-color-design {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.hero-description-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.hero-meta-contrast-accessibility-color-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-contrast-accessibility-color-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-contrast-accessibility-color-design i {
  font-size: 0.875rem;
}

.hero-image-contrast-accessibility-color-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

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

.breadcrumbs-contrast-accessibility-color-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumbs-contrast-accessibility-color-design a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-contrast-accessibility-color-design a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-contrast-accessibility-color-design span {
  color: #9ca3af;
}

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

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

.intro-text-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-contrast-accessibility-color-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.intro-paragraph-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-contrast-accessibility-color-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

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

.wcag-section-contrast-accessibility-color-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-contrast-accessibility-color-design {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-contrast-accessibility-color-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.wcag-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.wcag-subtitle-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.wcag-content-contrast-accessibility-color-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.wcag-text-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wcag-image-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.wcag-paragraph-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.wcag-levels-contrast-accessibility-color-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.level-card-contrast-accessibility-color-design {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #059669;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.level-header-contrast-accessibility-color-design {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.level-name-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.level-ratio-contrast-accessibility-color-design {
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.level-description-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.wcag-image-contrast-accessibility-color-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .wcag-content-contrast-accessibility-color-design {
    flex-direction: column;
  }
  
  .wcag-text-contrast-accessibility-color-design,
  .wcag-image-contrast-accessibility-color-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.calculation-section-contrast-accessibility-color-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.calculation-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.calculation-subtitle-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.calculation-content-contrast-accessibility-color-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.calculation-image-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-text-contrast-accessibility-color-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calculation-paragraph-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.calculation-highlight-contrast-accessibility-color-design {
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid #059669;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 4px;
}

.highlight-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #111827;
  line-height: 1.6;
  margin: 0;
}

.calculation-image-contrast-accessibility-color-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .calculation-content-contrast-accessibility-color-design {
    flex-direction: column-reverse;
  }
  
  .calculation-image-contrast-accessibility-color-design,
  .calculation-text-contrast-accessibility-color-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-contrast-accessibility-color-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.strategies-subtitle-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-cards-contrast-accessibility-color-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
  justify-content: center;
}

.strategy-card-contrast-accessibility-color-design {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-card-contrast-accessibility-color-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.strategy-icon-contrast-accessibility-color-design {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 8px;
  font-size: 1.5rem;
}

.strategy-title-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.strategy-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-card-contrast-accessibility-color-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.implementation-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.implementation-subtitle-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-steps-contrast-accessibility-color-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.step-item-contrast-accessibility-color-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f9fafb;
  border-radius: 8px;
  align-items: flex-start;
}

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

.step-content-contrast-accessibility-color-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.step-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-contrast-accessibility-color-design {
  margin-top: 3rem;
}

.implementation-image-contrast-accessibility-color-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

.common-mistakes-section-contrast-accessibility-color-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.mistakes-content-contrast-accessibility-color-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: 3rem;
}

.mistakes-content-contrast-accessibility-color-design {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.mistake-block-contrast-accessibility-color-design {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-top: 3px solid #f59e0b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mistake-heading-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.mistake-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.mistakes-image-contrast-accessibility-color-design {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.mistakes-image-contrast-accessibility-color-design img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .mistakes-content-contrast-accessibility-color-design {
    grid-template-columns: 1fr;
  }
  
  .mistake-block-contrast-accessibility-color-design {
    grid-column: auto;
  }
}

.conclusion-section-contrast-accessibility-color-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
}

.conclusion-text-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.conclusion-cta-contrast-accessibility-color-design {
  margin-top: 1.5rem;
}

.btn-primary-contrast-accessibility-color-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-primary-contrast-accessibility-color-design:hover {
  background: #047857;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.disclaimer-section-contrast-accessibility-color-design {
  background: #f9fafb;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-contrast-accessibility-color-design {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 4px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.disclaimer-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.related-section-contrast-accessibility-color-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-contrast-accessibility-color-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-contrast-accessibility-color-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-contrast-accessibility-color-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

.related-card-contrast-accessibility-color-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

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

.related-card-content-contrast-accessibility-color-design {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-contrast-accessibility-color-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-contrast-accessibility-color-design {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

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

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

.main-font-selection-responsive-design {
  width: 100%;
}

.hero-section-font-selection-responsive-design {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-font-selection-responsive-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
}

.breadcrumbs-font-selection-responsive-design a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-font-selection-responsive-design a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-font-selection-responsive-design span {
  color: #cbd5e1;
}

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

.hero-text-wrapper-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-font-selection-responsive-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-font-selection-responsive-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-font-selection-responsive-design i {
  font-size: 0.875rem;
}

.hero-image-wrapper-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-font-selection-responsive-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

  .hero-text-wrapper-font-selection-responsive-design,
  .hero-image-wrapper-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.intro-content-font-selection-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-font-selection-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-font-selection-responsive-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-font-selection-responsive-design {
    flex-direction: column;
  }

  .intro-text-font-selection-responsive-design,
  .intro-image-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-one-section-font-selection-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-wrapper-font-selection-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-one-text-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-font-selection-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-one-description-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-one-highlight-font-selection-responsive-design {
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

.content-one-image-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-img-font-selection-responsive-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-one-wrapper-font-selection-responsive-design {
    flex-direction: column;
  }

  .content-one-text-font-selection-responsive-design,
  .content-one-image-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-section-font-selection-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-two-wrapper-font-selection-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-two-image-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-image-img-font-selection-responsive-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.content-two-text-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-font-selection-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-two-description-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-two-list-font-selection-responsive-design {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-font-selection-responsive-design::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-two-wrapper-font-selection-responsive-design {
    flex-direction: column;
  }

  .content-two-image-font-selection-responsive-design,
  .content-two-text-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.features-section-font-selection-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-font-selection-responsive-design {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.features-tag-font-selection-responsive-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-font-selection-responsive-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-font-selection-responsive-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.features-card-font-selection-responsive-design {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.features-card-font-selection-responsive-design:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.features-card-icon-font-selection-responsive-design {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 12px;
  font-size: 1.75rem;
}

.features-card-title-font-selection-responsive-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .features-card-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

.content-three-section-font-selection-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-wrapper-font-selection-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-three-text-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-font-selection-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-three-description-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-block-font-selection-responsive-design {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

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

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

.content-three-image-font-selection-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-img-font-selection-responsive-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-three-wrapper-font-selection-responsive-design {
    flex-direction: column;
  }

  .content-three-text-font-selection-responsive-design,
  .content-three-image-font-selection-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-font-selection-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-font-selection-responsive-design {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.steps-title-font-selection-responsive-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.steps-subtitle-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-list-font-selection-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-item-font-selection-responsive-design {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

.step-number-font-selection-responsive-design {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-font-selection-responsive-design {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-font-selection-responsive-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .step-item-font-selection-responsive-design {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-font-selection-responsive-design {
    min-width: auto;
  }
}

.conclusion-section-font-selection-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-font-selection-responsive-design {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-font-selection-responsive-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-font-selection-responsive-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-cta-font-selection-responsive-design {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.cta-button-font-selection-responsive-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cta-button-font-selection-responsive-design:hover {
  background: #047857;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.related-section-font-selection-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-font-selection-responsive-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  text-align: center;
}

.related-cards-font-selection-responsive-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

.related-card-font-selection-responsive-design:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-font-selection-responsive-design {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-image-font-selection-responsive-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.related-card-description-font-selection-responsive-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-font-selection-responsive-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-card-link-font-selection-responsive-design:hover {
  color: #047857;
  gap: 0.75rem;
}

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

.disclaimer-section-font-selection-responsive-design {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-font-selection-responsive-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.disclaimer-title-font-selection-responsive-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }
}

@media (min-width: 768px) {
  .steps-list-font-selection-responsive-design {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .features-cards-font-selection-responsive-design {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-cards-font-selection-responsive-design {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.cta-button-font-selection-responsive-design:focus,
.related-card-link-font-selection-responsive-design:focus {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

a {
  transition: color 0.2s ease;
}

a:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.main-modular-scale-typography-systems {
  width: 100%;
  overflow: hidden;
}

.hero-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

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

.hero-text-wrapper-modular-scale-typography-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-title-modular-scale-typography-systems {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-modular-scale-typography-systems {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-modular-scale-typography-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.meta-badge-modular-scale-typography-systems {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-modular-scale-typography-systems i {
  font-size: 0.875rem;
}

.hero-image-wrapper-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-modular-scale-typography-systems {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-modular-scale-typography-systems {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-modular-scale-typography-systems a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-modular-scale-typography-systems a:hover {
  color: #047857;
  text-decoration: underline;
}

.introduction-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.introduction-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.introduction-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.introduction-image-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-modular-scale-typography-systems {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.foundations-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.foundations-header-modular-scale-typography-systems {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-tag-modular-scale-typography-systems {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.foundations-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.foundations-text-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-subtitle-modular-scale-typography-systems {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundations-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-modular-scale-typography-systems {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e293b;
  line-height: 1.6;
}

.foundations-image-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-img-modular-scale-typography-systems {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.implementation-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.implementation-header-modular-scale-typography-systems {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.implementation-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

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

.step-item-modular-scale-typography-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.step-number-modular-scale-typography-systems {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-modular-scale-typography-systems {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.step-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.benefits-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.benefits-header-modular-scale-typography-systems {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.benefits-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.benefits-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.benefits-list-modular-scale-typography-systems {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.benefit-item-modular-scale-typography-systems {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.6;
}

.benefit-item-modular-scale-typography-systems i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-image-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-img-modular-scale-typography-systems {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.advanced-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.advanced-header-modular-scale-typography-systems {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.advanced-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.advanced-subtitle-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.advanced-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-content-title-modular-scale-typography-systems {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.advanced-content-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.advanced-image-modular-scale-typography-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-modular-scale-typography-systems {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.quote-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.featured-quote-modular-scale-typography-systems {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-text-modular-scale-typography-systems {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
}

.quote-author-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.conclusion-content-modular-scale-typography-systems {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.conclusion-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cta-box-modular-scale-typography-systems {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
}

.cta-title-modular-scale-typography-systems {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.cta-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-modular-scale-typography-systems {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.cta-button-modular-scale-typography-systems:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-modular-scale-typography-systems {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-modular-scale-typography-systems {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-title-modular-scale-typography-systems {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-modular-scale-typography-systems {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.related-header-modular-scale-typography-systems {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.related-title-modular-scale-typography-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-modular-scale-typography-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-modular-scale-typography-systems {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.related-card-modular-scale-typography-systems:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-modular-scale-typography-systems {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-card-image-modular-scale-typography-systems img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-modular-scale-typography-systems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-modular-scale-typography-systems {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-description-modular-scale-typography-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-modular-scale-typography-systems,
  .introduction-content-modular-scale-typography-systems,
  .foundations-content-modular-scale-typography-systems,
  .benefits-content-modular-scale-typography-systems,
  .advanced-content-modular-scale-typography-systems {
    flex-direction: column;
  }

  .hero-text-wrapper-modular-scale-typography-systems,
  .hero-image-wrapper-modular-scale-typography-systems,
  .introduction-text-modular-scale-typography-systems,
  .introduction-image-modular-scale-typography-systems,
  .foundations-text-modular-scale-typography-systems,
  .foundations-image-modular-scale-typography-systems,
  .benefits-text-modular-scale-typography-systems,
  .benefits-image-modular-scale-typography-systems,
  .advanced-text-modular-scale-typography-systems,
  .advanced-image-modular-scale-typography-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-modular-scale-typography-systems {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-modular-scale-typography-systems {
    font-size: 2rem;
  }

  .related-card-modular-scale-typography-systems {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-modular-scale-typography-systems {
    font-size: 0.75rem;
  }

  .hero-meta-modular-scale-typography-systems {
    gap: 0.5rem;
  }

  .meta-badge-modular-scale-typography-systems {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .step-item-modular-scale-typography-systems {
    padding: 1rem;
  }

  .benefit-item-modular-scale-typography-systems {
    gap: 0.75rem;
  }
}

.typographic-journey-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.5;
  max-width: 700px;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 2rem 0 0 0;
}

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

.stat-item-about {
  flex: 0 1 auto;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.foundation-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.section-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 800px;
}

.foundation-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.expertise-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.expertise-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.expertise-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.card-text-about {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
}

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

  .hero-stats-about {
    gap: 1.5rem;
  }
}

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

.approach-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.approach-header-about {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.approach-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 750px;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f9fafb;
  border-radius: 10px;
  border-left: 3px solid #059669;
}

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

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.step-title-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.step-description-about {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.approach-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.philosophy-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.philosophy-tag-about {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.philosophy-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.value-item-about {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-label-about {
  font-size: 0.75rem;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.value-name-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.value-description-about {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.philosophy-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.quote-author-about {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-about {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-heading-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.disclaimer-icon-about {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

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

  .foundation-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
  }
}

@media (min-width: 1024px) {
  .process-steps-about {
    max-width: 900px;
  }

  .values-grid-about {
    gap: 2.5rem;
  }

  .value-item-about {
    flex: 0 1 auto;
  }
}

.legal-portal {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.legal-portal-hero {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.legal-portal-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.legal-portal-hero-content {
  max-width: 800px;
}

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.legal-portal-hero-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-portal-hero-updated i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.legal-portal-content {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.legal-portal-content-wrapper {
  max-width: 900px;
}

.legal-portal-section {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.legal-portal-section:last-of-type {
  margin-bottom: 0;
}

.legal-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section p:last-child {
  margin-bottom: 0;
}

.legal-portal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-portal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.legal-portal-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-portal-section li:last-child {
  margin-bottom: 0;
}

.legal-portal-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.legal-portal-contact-item {
  margin-bottom: 1.25rem;
}

.legal-portal-contact-item:last-child {
  margin-bottom: 0;
}

.legal-portal-contact-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.375rem;
}

.legal-portal-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .legal-portal-content {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .legal-portal-section {
    margin-bottom: clamp(3rem, 8vw, 5rem);
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: 6rem 0;
  }

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-section {
    margin-bottom: 4rem;
  }
}

.legal-portal a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-portal a:hover {
  color: var(--color-primary-hover);
}

.legal-portal a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.thank-you-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-section {
    width: 100%;
    background: var(--color-bg-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem);
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  .thank-section h1 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-lead {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .thank-description {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-description strong {
    color: var(--color-text-primary);
    font-weight: 600;
  }

  .thank-next-steps {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    transform: translateY(-2px);
  }

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

  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(4rem, 8vw, 6rem) 0;
      min-height: 100vh;
    }

    .thank-content {
      padding: clamp(3rem, 6vw, 4rem);
      gap: clamp(2rem, 4vw, 2.5rem);
    }

    .thank-icon {
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .btn {
      margin-top: clamp(1rem, 2vw, 1.5rem);
    }
  }

  @media (min-width: 1024px) {
    .thank-section {
      padding: clamp(6rem, 10vw, 8rem) 0;
    }

    .thank-content {
      padding: clamp(4rem, 8vw, 5rem);
      gap: clamp(2.5rem, 5vw, 3rem);
    }
  }

  @media (min-width: 1440px) {
    .thank-section {
      padding: 8rem 0;
    }

    .thank-content {
      padding: 5rem 4rem;
      gap: 3rem;
    }
  }

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.error-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.error-message {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.error-description {
  text-align: center;
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.error-description p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 500;
}

.error-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.error-list li {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.5;
}

.error-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-top: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

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

.error-hint {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.error-hint strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 1.5rem;
  }

  .error-decoration {
    width: 450px;
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 4rem;
  }

  .error-decoration {
    width: 500px;
    height: 500px;
  }

  .error-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .error-list li {
    flex: 0 1 auto;
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 6px 30px rgba(5, 150, 105, 0.2);
  }

  .btn {
    padding: 1.125rem 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

@media print {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-code {
    color: #000;
  }

  .btn {
    display: none;
  }
}
