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

:root {
  
  
  
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-tertiary: #06b6d4;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Crimson Text', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
  
  
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.025em;
  --ls-wider: 0.05em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

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

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

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

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

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

p:last-child {
  margin-bottom: 0;
}

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

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

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

strong,
b {
  font-weight: 600;
  color: var(--color-text-primary);
}

em,
i {
  font-style: italic;
}

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

li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-relaxed);
}

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

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

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

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

.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-primary:active {
  transform: translateY(0);
}

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

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

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

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

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

.btn-lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.125rem;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.card-body {
  margin-bottom: var(--space-md);
}

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.card-small {
  padding: var(--space-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

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

.badge-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
}

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

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

.badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

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

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

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

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

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

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

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

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

tr:last-child td {
  border-bottom: none;
}

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

code {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.125em 0.375em;
  border-radius: var(--radius-sm);
}

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

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

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

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

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

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

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

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

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

.bg-accent {
  background: rgba(37, 99, 235, 0.05);
}

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

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

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

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

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

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

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

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

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

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: var(--space-xl);
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

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

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

.flex-start {
  display: flex;
  align-items: flex-start;
}

.flex-end {
  display: flex;
  align-items: flex-end;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

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

.align-items-start {
  align-items: flex-start;
}

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

.align-items-end {
  align-items: flex-end;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.divider {
  height: 1px;
  background: var(--color-bg-tertiary);
  margin: var(--space-lg) 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: var(--color-bg-tertiary);
}

.border {
  border: 1px solid var(--color-bg-tertiary);
}

.border-top {
  border-top: 1px solid var(--color-bg-tertiary);
}

.border-bottom {
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.border-left {
  border-left: 1px solid var(--color-bg-tertiary);
}

.border-right {
  border-right: 1px solid var(--color-bg-tertiary);
}

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

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

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

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

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

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

.rounded-full {
  border-radius: 9999px;
}

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

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

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

.transition-all {
  transition: all var(--transition-base);
}

.transition-colors {
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.transition-transform {
  transition: transform var(--transition-base);
}

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

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

@media print {
  body {
    background: #ffffff;
  }

  .no-print {
    display: none;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  table {
    font-size: 0.875rem;
  }

  th,
  td {
    padding: var(--space-sm);
  }
}

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

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

::-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;
}
.header-ledger-nexus {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.header-ledger-nexus-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header-ledger-nexus-brand:hover {
  opacity: 0.8;
}

.header-ledger-nexus-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.header-ledger-nexus-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: var(--ls-tight);
}

.header-ledger-nexus-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
}

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

.header-ledger-nexus-nav-link:hover {
  color: var(--color-primary);
}

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

.header-ledger-nexus-nav-link:hover::after {
  width: 100%;
}

.header-ledger-nexus-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-ledger-nexus-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-ledger-nexus-mobile-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.header-ledger-nexus-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-ledger-nexus-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
  padding-top: clamp(4rem, 8vh, 5.5rem);
}

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

.header-ledger-nexus-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  z-index: 100;
  width: 100%;
}

.header-ledger-nexus-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.header-ledger-nexus-mobile-close:hover {
  color: var(--color-primary);
}

.header-ledger-nexus-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 2rem);
  margin-top: 1rem;
}

.header-ledger-nexus-mobile-link {
  padding: 1rem clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.header-ledger-nexus-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-ledger-nexus-mobile-cta {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  display: block;
}

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

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

  .header-ledger-nexus-cta-button {
    display: inline-flex;
  }

  .header-ledger-nexus-mobile-toggle {
    display: none;
  }

  .header-ledger-nexus-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-ledger-nexus-container {
    height: clamp(3.5rem, 7vh, 5rem);
  }
}

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

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

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

.hero-text-block-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.hero-title-index {
  color: #1e293b;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.hero-buttons-index .btn {
  min-width: 150px;
}

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2563eb;
  font-family: 'Crimson Text', serif;
}

.stat-label-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #64748b;
  text-align: center;
}

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

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

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

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

.benefits-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

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

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

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

.card-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #2563eb;
}

.card-title-index {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.card-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

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

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

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

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

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

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

.process-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

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

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

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  font-family: 'Crimson Text', serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-index {
  color: #1e293b;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin: 0;
}

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

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

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

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

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

.stats-description-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 550px;
  margin: 0 auto;
}

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

.stat-card-index {
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card-index:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.stat-card-number-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #2563eb;
  font-family: 'Crimson Text', serif;
  margin: 0;
}

.stat-card-label-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.featured-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

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

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

.featured-card-link-index {
  color: inherit;
}

.featured-card-index:hover {
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
  transform: translateY(-6px);
}

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

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

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

.featured-card-body-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

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

.featured-card-cta-index {
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.featured-card-index:hover .featured-card-cta-index {
  color: #1d4ed8;
  transform: translateX(4px);
}

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

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

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

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

.testimonials-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

.featured-quote-index {
  background: #ffffff;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 0;
}

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

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

.testimonials-badges-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: 1.5rem;
}

.badge-item-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.badge-item-index i {
  color: #2563eb;
  font-size: 1.25rem;
}

.badge-text-index {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 500;
}

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

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

.cta-box-index {
  flex: 1 1 45%;
  min-width: 250px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

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

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

.btn-cta-index {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

.cta-info-index {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-info-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-info-title-index {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.cta-info-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 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-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-banner-buttons-index {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font-primary);
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #2563eb;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

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

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

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

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

  .about-image-block-index {
    flex: 1 1 100%;
  }

  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-index {
    min-width: auto;
  }

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

  .cta-box-index {
    flex: 1 1 100%;
  }

  .cta-info-index {
    flex: 1 1 100%;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero-section-index {
    padding: 2rem 0;
  }

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

  .benefits-cards-index {
    gap: 1rem;
  }

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

  .featured-cards-index {
    gap: 1rem;
  }

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

  .stats-grid-index {
    gap: 1rem;
  }

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

  .cookie-banner {
    gap: 0.75rem;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

    .footer {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

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

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

.footer-about {
  max-width: 520px;
}

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

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

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

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.footer-copyright {
  border-top: 1px solid #e2e8f0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 280px;
    min-width: 250px;
  }

  .footer-nav {
    flex: 0 1 auto;
    min-width: 150px;
  }

  .footer-contact {
    flex: 0 1 auto;
    min-width: 280px;
  }

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid #e2e8f0;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    width: 100%;
  }
}
    

.category-page-contabilidad-partida-doble {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-contabilidad-partida-doble {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-text-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.hero-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.hero-subtitle-contabilidad-partida-doble {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
}

.hero-description-contabilidad-partida-doble {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.posts-section-contabilidad-partida-doble {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-contabilidad-partida-doble {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.posts-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.posts-subtitle-contabilidad-partida-doble {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-contabilidad-partida-doble {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.card-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-image-contabilidad-partida-doble {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.005em;
}

.card-description-contabilidad-partida-doble {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-contabilidad-partida-doble {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.meta-item-contabilidad-partida-doble {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item-contabilidad-partida-doble i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-contabilidad-partida-doble {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
}

.card-link-contabilidad-partida-doble:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.principles-section-contabilidad-partida-doble {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.principles-header-contabilidad-partida-doble {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.principles-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.principles-intro-contabilidad-partida-doble {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.principles-list-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

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

.principle-number-contabilidad-partida-doble {
  flex-shrink: 0;
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.principle-text-contabilidad-partida-doble {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.principle-item-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.005em;
}

.principle-item-description-contabilidad-partida-doble {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.methods-section-contabilidad-partida-doble {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.methods-header-contabilidad-partida-doble {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.methods-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.methods-intro-contabilidad-partida-doble {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.methods-grid-contabilidad-partida-doble {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-contabilidad-partida-doble {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1 1 240px;
  max-width: 300px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all var(--transition-base);
}

.method-card-contabilidad-partida-doble:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--color-primary-hover);
}

.method-card-title-contabilidad-partida-doble {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.005em;
}

.method-card-text-contabilidad-partida-doble {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .principle-item-contabilidad-partida-doble {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .principle-number-contabilidad-partida-doble {
    width: clamp(2.5rem, 5vw, 3rem);
    height: clamp(2.5rem, 5vw, 3rem);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .posts-grid-contabilidad-partida-doble {
    flex-direction: column;
    align-items: center;
  }

  .card-contabilidad-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .methods-grid-contabilidad-partida-doble {
    flex-direction: column;
    align-items: stretch;
  }

  .method-card-contabilidad-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-contabilidad-partida-doble {
    padding: 2rem 0;
  }

  .posts-section-contabilidad-partida-doble {
    padding: 2rem 0;
  }

  .principles-section-contabilidad-partida-doble {
    padding: 2rem 0;
  }

  .methods-section-contabilidad-partida-doble {
    padding: 2rem 0;
  }

  .card-contabilidad-partida-doble {
    padding: 1rem;
  }

  .method-card-contabilidad-partida-doble {
    padding: 1.25rem;
  }

  .principle-item-contabilidad-partida-doble {
    flex-direction: column;
    text-align: center;
  }

  .principle-number-contabilidad-partida-doble {
    margin: 0 auto;
  }
}

.main-fundamentos-partida-doble {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.hero-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

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

.breadcrumbs-fundamentos-partida-doble a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-fundamentos-partida-doble a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-fundamentos-partida-doble span {
  color: #cbd5e1;
}

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

.hero-text-wrapper-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-fundamentos-partida-doble {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-fundamentos-partida-doble {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-fundamentos-partida-doble {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-separator-fundamentos-partida-doble {
  color: #cbd5e1;
}

.hero-image-fundamentos-partida-doble {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

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

  .hero-text-wrapper-fundamentos-partida-doble,
  .hero-image-wrapper-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-fundamentos-partida-doble {
    font-size: 2rem;
  }

  .hero-subtitle-fundamentos-partida-doble {
    font-size: 1rem;
  }
}

.intro-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-fundamentos-partida-doble {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-highlight-fundamentos-partida-doble {
  flex: 1 1 45%;
  max-width: 45%;
}

.intro-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-description-fundamentos-partida-doble:last-of-type {
  margin-bottom: 0;
}

.highlight-box-fundamentos-partida-doble {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: 1.75rem;
  border-radius: 8px;
}

.highlight-title-fundamentos-partida-doble {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-text-fundamentos-partida-doble {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .intro-content-fundamentos-partida-doble {
    flex-direction: column;
  }

  .intro-text-fundamentos-partida-doble,
  .intro-highlight-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.concept-section-fundamentos-partida-doble {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.concept-wrapper-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concept-text-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.concept-description-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.concept-list-fundamentos-partida-doble {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}

.concept-item-fundamentos-partida-doble {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.concept-item-fundamentos-partida-doble::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.concept-image-fundamentos-partida-doble img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .concept-wrapper-fundamentos-partida-doble {
    flex-direction: column;
  }

  .concept-text-fundamentos-partida-doble,
  .concept-image-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.debits-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.debits-wrapper-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.debits-image-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.debits-text-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.debits-image-fundamentos-partida-doble img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block;
}

.debits-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.debits-description-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .debits-wrapper-fundamentos-partida-doble {
    flex-direction: column-reverse;
  }

  .debits-image-fundamentos-partida-doble,
  .debits-text-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-fundamentos-partida-doble {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.process-header-fundamentos-partida-doble {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.process-subtitle-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.process-steps-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-fundamentos-partida-doble {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-card-fundamentos-partida-doble:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.step-title-fundamentos-partida-doble {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-fundamentos-partida-doble {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .step-card-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.example-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.example-wrapper-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.example-text-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-fundamentos-partida-doble {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.example-description-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.example-box-fundamentos-partida-doble {
  background: #f1f5f9;
  border-left: 4px solid #0ea5e9;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.example-label-fundamentos-partida-doble {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.example-label-fundamentos-partida-doble:last-child {
  margin-bottom: 0;
}

.example-image-fundamentos-partida-doble img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .example-wrapper-fundamentos-partida-doble {
    flex-direction: column;
  }

  .example-text-fundamentos-partida-doble,
  .example-image-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-fundamentos-partida-doble {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.benefits-header-fundamentos-partida-doble {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.benefits-subtitle-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.benefits-cards-fundamentos-partida-doble {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-fundamentos-partida-doble {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.benefit-card-fundamentos-partida-doble:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card-title-fundamentos-partida-doble {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card-text-fundamentos-partida-doble {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefit-card-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.conclusion-content-fundamentos-partida-doble {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-quote-fundamentos-partida-doble {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

.quote-text-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 0;
}

.conclusion-closing-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: center;
}

.disclaimer-section-fundamentos-partida-doble {
  background: #f8fafc;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-fundamentos-partida-doble {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: 1.75rem;
  border-radius: 8px;
}

.disclaimer-title-fundamentos-partida-doble {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-fundamentos-partida-doble {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.related-section-fundamentos-partida-doble {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-fundamentos-partida-doble {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-fundamentos-partida-doble {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-fundamentos-partida-doble {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.related-card-fundamentos-partida-doble {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: calc(33.333% - 1.33rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-fundamentos-partida-doble:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image-fundamentos-partida-doble {
  width: 100%;
  height: auto;
  max-height: 220px;
  overflow: hidden;
}

.related-image-fundamentos-partida-doble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-fundamentos-partida-doble:hover .related-image-fundamentos-partida-doble img {
  transform: scale(1.05);
}

.related-text-fundamentos-partida-doble {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-fundamentos-partida-doble {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}

.related-card-description-fundamentos-partida-doble {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .related-card-fundamentos-partida-doble {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-fundamentos-partida-doble {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.main-cuentas-t-formato-estandar {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

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

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

.hero-section-cuentas-t-formato-estandar {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-cuentas-t-formato-estandar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-cuentas-t-formato-estandar a {
  color: #64b5f6;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-cuentas-t-formato-estandar a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.breadcrumbs-cuentas-t-formato-estandar span {
  color: #64748b;
}

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

.hero-text-block-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-cuentas-t-formato-estandar {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  margin-bottom: 2rem;
}

.hero-meta-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.meta-item-cuentas-t-formato-estandar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.meta-item-cuentas-t-formato-estandar i {
  color: #2563eb;
  font-size: 1rem;
}

.hero-image-block-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-cuentas-t-formato-estandar {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 1024px) {
  .hero-content-cuentas-t-formato-estandar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text-block-cuentas-t-formato-estandar,
  .hero-image-block-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-title-cuentas-t-formato-estandar {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
  
  .breadcrumbs-cuentas-t-formato-estandar {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-meta-cuentas-t-formato-estandar {
    gap: 1rem;
  }
}

.intro-section-cuentas-t-formato-estandar {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}

.intro-image-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-cuentas-t-formato-estandar {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .intro-wrapper-cuentas-t-formato-estandar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-text-cuentas-t-formato-estandar,
  .intro-image-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .intro-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
  
  .intro-title-cuentas-t-formato-estandar {
    font-size: 1.75rem;
  }
}

.structure-section-cuentas-t-formato-estandar {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-wrapper-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-image-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-cuentas-t-formato-estandar {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.structure-text-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-paragraph-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}

.structure-list-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-cuentas-t-formato-estandar {
  padding: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border-left: 4px solid #2563eb;
}

.list-title-cuentas-t-formato-estandar {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.list-text-cuentas-t-formato-estandar {
  font-size: 0.95rem;
  color: #374151;
  line-height: var(--lh-normal);
  margin: 0;
}

@media (max-width: 1024px) {
  .structure-wrapper-cuentas-t-formato-estandar {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .structure-image-cuentas-t-formato-estandar,
  .structure-text-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .structure-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
}

.rules-section-cuentas-t-formato-estandar {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.rules-header-cuentas-t-formato-estandar {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.rules-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rules-subtitle-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
}

.rules-grid-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.rule-card-cuentas-t-formato-estandar {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule-card-cuentas-t-formato-estandar:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header-cuentas-t-formato-estandar {
  padding-bottom: 1rem;
  border-bottom: 2px solid #2563eb;
}

.card-title-cuentas-t-formato-estandar {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.card-body-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-text-cuentas-t-formato-estandar {
  font-size: 0.95rem;
  color: #374151;
  line-height: var(--lh-normal);
  margin: 0;
}

.card-example-cuentas-t-formato-estandar {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
  line-height: var(--lh-normal);
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .rules-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
  
  .rule-card-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.application-section-cuentas-t-formato-estandar {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.application-wrapper-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-text-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.application-paragraph-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}

.application-image-cuentas-t-formato-estandar {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-image-cuentas-t-formato-estandar {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .application-wrapper-cuentas-t-formato-estandar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .application-text-cuentas-t-formato-estandar,
  .application-image-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .application-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
}

.benefits-section-cuentas-t-formato-estandar {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--lh-tight);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-highlight-cuentas-t-formato-estandar {
  background: rgba(37, 99, 235, 0.15);
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.highlight-text-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #e0e7ff;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.benefits-points-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-point-cuentas-t-formato-estandar {
  flex: 1 1 250px;
  max-width: 320px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.point-title-cuentas-t-formato-estandar {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64b5f6;
  margin-bottom: 0.75rem;
}

.point-text-cuentas-t-formato-estandar {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: var(--lh-normal);
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
  
  .benefit-point-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-cuentas-t-formato-estandar {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cuentas-t-formato-estandar {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-cuentas-t-formato-estandar {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}

.conclusion-cta-cuentas-t-formato-estandar {
  margin-top: 2rem;
}

.cta-button-cuentas-t-formato-estandar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.cta-button-cuentas-t-formato-estandar:hover {
  background: #1d4ed8;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
}

.disclaimer-section-cuentas-t-formato-estandar {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-cuentas-t-formato-estandar {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0ea5e9;
}

.disclaimer-title-cuentas-t-formato-estandar {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-cuentas-t-formato-estandar {
  font-size: 0.95rem;
  color: #374151;
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-cuentas-t-formato-estandar {
    padding: 1.5rem 0;
  }
  
  .disclaimer-content-cuentas-t-formato-estandar {
    padding: 1.5rem;
  }
}

.related-section-cuentas-t-formato-estandar {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-cuentas-t-formato-estandar {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-cuentas-t-formato-estandar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-cuentas-t-formato-estandar {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.related-card-cuentas-t-formato-estandar:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-image-wrapper-cuentas-t-formato-estandar {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-cuentas-t-formato-estandar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-cuentas-t-formato-estandar:hover .related-card-image-cuentas-t-formato-estandar {
  transform: scale(1.05);
}

.card-content-cuentas-t-formato-estandar {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-cuentas-t-formato-estandar {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin: 0;
}

.card-description-cuentas-t-formato-estandar {
  font-size: 0.95rem;
  color: #64748b;
  line-height: var(--lh-normal);
  margin: 0;
  flex: 1;
}

.card-link-cuentas-t-formato-estandar {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: auto;
}

.card-link-cuentas-t-formato-estandar:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-section-cuentas-t-formato-estandar {
    padding: 2rem 0;
  }
  
  .related-card-cuentas-t-formato-estandar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .related-cards-cuentas-t-formato-estandar {
    gap: 1rem;
  }
  
  .card-content-cuentas-t-formato-estandar {
    padding: 1rem;
  }
}

.main-ciclo-contable-completo-españa {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-primary);
}

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

.hero-section-ciclo-contable-completo-españa {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-ciclo-contable-completo-españa {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-meta-ciclo-contable-completo-españa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-ciclo-contable-completo-españa {
  color: #94a3b8;
}

.meta-separator-ciclo-contable-completo-españa {
  color: #cbd5e1;
}

.hero-image-wrapper-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-ciclo-contable-completo-españa {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-ciclo-contable-completo-españa {
    flex-direction: column;
  }

  .hero-text-wrapper-ciclo-contable-completo-españa,
  .hero-image-wrapper-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-ciclo-contable-completo-españa {
    max-height: 300px;
  }
}

.breadcrumbs-ciclo-contable-completo-españa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-ciclo-contable-completo-españa a {
  color: #2563eb;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-ciclo-contable-completo-españa a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-ciclo-contable-completo-españa span {
  color: #cbd5e1;
}

.intro-section-ciclo-contable-completo-españa {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-paragraph-ciclo-contable-completo-españa:last-child {
  margin-bottom: 0;
}

.intro-image-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-ciclo-contable-completo-españa img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-ciclo-contable-completo-españa {
    flex-direction: column;
  }

  .intro-text-ciclo-contable-completo-españa,
  .intro-image-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-ciclo-contable-completo-españa img {
    max-height: 300px;
  }
}

.process-section-ciclo-contable-completo-españa {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-ciclo-contable-completo-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-subtitle-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.steps-wrapper-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.step-item-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-ciclo-contable-completo-españa {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  min-width: clamp(60px, 10vw, 90px);
  text-align: center;
  font-family: 'Crimson Text', serif;
}

.step-body-ciclo-contable-completo-españa {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.step-text-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .step-item-ciclo-contable-completo-españa {
    gap: 1rem;
  }

  .step-number-ciclo-contable-completo-españa {
    min-width: 50px;
  }
}

.details-section-ciclo-contable-completo-españa {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-wrapper-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.details-text-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.details-paragraph-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.details-paragraph-ciclo-contable-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.details-image-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-ciclo-contable-completo-españa img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .details-wrapper-ciclo-contable-completo-españa {
    flex-direction: column;
  }

  .details-text-ciclo-contable-completo-españa,
  .details-image-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .details-image-ciclo-contable-completo-españa img {
    max-height: 300px;
  }
}

.features-section-ciclo-contable-completo-españa {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-ciclo-contable-completo-españa {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.features-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.features-subtitle-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.features-grid-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.feature-card-ciclo-contable-completo-españa {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-ciclo-contable-completo-españa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-ciclo-contable-completo-españa {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.feature-card-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-card-text-ciclo-contable-completo-españa {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .feature-card-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-ciclo-contable-completo-españa {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-wrapper-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-ciclo-contable-completo-españa img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practical-text-ciclo-contable-completo-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practical-paragraph-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.practical-paragraph-ciclo-contable-completo-españa:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .practical-wrapper-ciclo-contable-completo-españa {
    flex-direction: column;
  }

  .practical-image-ciclo-contable-completo-españa,
  .practical-text-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-image-ciclo-contable-completo-españa img {
    max-height: 300px;
  }
}

.closing-section-ciclo-contable-completo-españa {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-ciclo-contable-completo-españa {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.closing-paragraph-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.closing-paragraph-ciclo-contable-completo-españa:last-child {
  margin-bottom: 0;
}

.disclaimer-section-ciclo-contable-completo-españa {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
}

.disclaimer-icon-ciclo-contable-completo-españa {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-ciclo-contable-completo-españa {
  flex: 1;
}

.disclaimer-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.disclaimer-body-ciclo-contable-completo-españa {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .disclaimer-content-ciclo-contable-completo-españa {
    flex-direction: column;
  }

  .disclaimer-icon-ciclo-contable-completo-españa {
    margin-top: 0;
  }
}

.related-section-ciclo-contable-completo-españa {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-ciclo-contable-completo-españa {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.related-subtitle-ciclo-contable-completo-españa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.related-cards-ciclo-contable-completo-españa {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-ciclo-contable-completo-españa {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-ciclo-contable-completo-españa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-ciclo-contable-completo-españa {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-ciclo-contable-completo-españa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-ciclo-contable-completo-españa {
  padding: clamp(1.5rem, 2vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-ciclo-contable-completo-españa {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.related-card-text-ciclo-contable-completo-españa {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.related-link-ciclo-contable-completo-españa {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.related-link-ciclo-contable-completo-españa:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-ciclo-contable-completo-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-ciclo-contable-completo-españa,
  .intro-section-ciclo-contable-completo-españa,
  .process-section-ciclo-contable-completo-españa,
  .details-section-ciclo-contable-completo-españa,
  .features-section-ciclo-contable-completo-españa,
  .practical-section-ciclo-contable-completo-españa,
  .closing-section-ciclo-contable-completo-españa,
  .disclaimer-section-ciclo-contable-completo-españa,
  .related-section-ciclo-contable-completo-españa {
    padding: 2rem 0;
  }

  .breadcrumbs-ciclo-contable-completo-españa {
    font-size: 0.75rem;
  }

  .step-item-ciclo-contable-completo-españa {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-ciclo-contable-completo-españa {
    text-align: left;
  }
}

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

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

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

.main-debitos-creditos-reglas-practicas {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-debitos-creditos-reglas-practicas {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-debitos-creditos-reglas-practicas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-debitos-creditos-reglas-practicas a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-debitos-creditos-reglas-practicas a:hover {
  color: #e2e8f0;
}

.breadcrumbs-debitos-creditos-reglas-practicas span {
  color: #64748b;
}

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

.hero-text-wrapper-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-debitos-creditos-reglas-practicas {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-debitos-creditos-reglas-practicas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-debitos-creditos-reglas-practicas i {
  color: #2563eb;
  font-size: 1rem;
}

.hero-image-wrapper-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-debitos-creditos-reglas-practicas {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .hero-text-wrapper-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-debitos-creditos-reglas-practicas {
    max-height: 300px;
  }
}

.intro-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-paragraph-debitos-creditos-reglas-practicas:last-child {
  margin-bottom: 0;
}

.intro-image-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-asset-debitos-creditos-reglas-practicas {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .intro-text-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-asset-debitos-creditos-reglas-practicas {
    max-height: 300px;
  }
}

.rules-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.rules-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.rules-text-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.rules-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rules-paragraph-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rules-grid-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rule-card-debitos-creditos-reglas-practicas {
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid #2563eb;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.rule-card-debitos-creditos-reglas-practicas:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.rule-number-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.rule-heading-debitos-creditos-reglas-practicas {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.rule-text-debitos-creditos-reglas-practicas {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.rules-image-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.rules-image-asset-debitos-creditos-reglas-practicas {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .rules-content-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .rules-text-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .rules-image-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .rules-image-asset-debitos-creditos-reglas-practicas {
    max-height: 300px;
  }
}

.practice-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.practice-image-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.practice-image-asset-debitos-creditos-reglas-practicas {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.practice-text-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-paragraph-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.practice-list-debitos-creditos-reglas-practicas {
  margin-bottom: 1.25rem;
  margin-left: 1.5rem;
}

.practice-item-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.practice-item-debitos-creditos-reglas-practicas strong {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .practice-content-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .practice-image-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .practice-text-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-asset-debitos-creditos-reglas-practicas {
    max-height: 300px;
  }
}

.memory-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.memory-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: column;
}

.memory-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.memory-intro-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.memory-techniques-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.technique-card-debitos-creditos-reglas-practicas {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.technique-card-debitos-creditos-reglas-practicas:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.technique-heading-debitos-creditos-reglas-practicas {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.technique-text-debitos-creditos-reglas-practicas {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.memory-highlight-debitos-creditos-reglas-practicas {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
  border-left: 4px solid #2563eb;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.memory-highlight-text-debitos-creditos-reglas-practicas {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #334155;
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 768px) {
  .memory-techniques-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .technique-card-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.errors-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.errors-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.errors-text-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.errors-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.errors-paragraph-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.errors-paragraph-debitos-creditos-reglas-practicas strong {
  color: #1e293b;
  font-weight: 600;
}

.errors-image-debitos-creditos-reglas-practicas {
  flex: 1 1 50%;
  max-width: 50%;
}

.errors-image-asset-debitos-creditos-reglas-practicas {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .errors-content-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .errors-text-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .errors-image-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .errors-image-asset-debitos-creditos-reglas-practicas {
    max-height: 300px;
  }
}

.conclusion-section-debitos-creditos-reglas-practicas {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-main-debitos-creditos-reglas-practicas {
  text-align: center;
}

.conclusion-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-debitos-creditos-reglas-practicas {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-summary-box-debitos-creditos-reglas-practicas {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.summary-heading-debitos-creditos-reglas-practicas {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
}

.summary-list-debitos-creditos-reglas-practicas {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.summary-item-debitos-creditos-reglas-practicas {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.conclusion-closing-debitos-creditos-reglas-practicas {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.related-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.related-content-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: column;
}

.related-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-debitos-creditos-reglas-practicas {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-cards-debitos-creditos-reglas-practicas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-debitos-creditos-reglas-practicas {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-debitos-creditos-reglas-practicas:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.related-card-image-debitos-creditos-reglas-practicas {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-debitos-creditos-reglas-practicas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-debitos-creditos-reglas-practicas:hover .related-card-img-debitos-creditos-reglas-practicas {
  transform: scale(1.05);
}

.related-card-body-debitos-creditos-reglas-practicas {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-debitos-creditos-reglas-practicas {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.related-card-link-debitos-creditos-reglas-practicas {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color var(--transition-base);
  margin-top: auto;
}

.related-card-link-debitos-creditos-reglas-practicas:hover {
  color: #1d4ed8;
}

@media (max-width: 768px) {
  .related-cards-debitos-creditos-reglas-practicas {
    flex-direction: column;
  }

  .related-card-debitos-creditos-reglas-practicas {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-debitos-creditos-reglas-practicas {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

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

.disclaimer-content-debitos-creditos-reglas-practicas {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-debitos-creditos-reglas-practicas {
  background: var(--color-bg-secondary);
  border-left: 4px solid #64748b;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-debitos-creditos-reglas-practicas {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-debitos-creditos-reglas-practicas {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-box-debitos-creditos-reglas-practicas {
    padding: 1.25rem;
  }

  .disclaimer-title-debitos-creditos-reglas-practicas {
    font-size: 0.95rem;
  }
}

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

html, body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.contaplus-accounting-about {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--lh-normal);
}

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

.hero-section-accounting-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-weight: 400;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

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

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

.stat-number-about {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  text-align: center;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.4rem) clamp(0.75rem, 1.5vw, 1.25rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.foundation-text-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.foundation-text-about strong {
  color: var(--color-primary);
  font-weight: 700;
}

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

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

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

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

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

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

.step-title-about {
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--lh-tight);
}

.step-text-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

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

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

.principles-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.principle-card-about {
  flex: 1 1 clamp(250px, 100%, 320px);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(3rem, 5vw, 4rem);
  width: clamp(3rem, 5vw, 4rem);
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--lh-tight);
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.expertise-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.expertise-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
}

.expertise-text-about {
  flex: 1 1 clamp(280px, 100%, 500px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.expertise-visual-about {
  flex: 1 1 clamp(280px, 100%, 500px);
  min-height: 300px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

.expertise-para-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
}

.expertise-para-about em {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 600;
}

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.1rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--lh-relaxed);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.quote-author-about {
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

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

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

.commitment-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

.commitment-text-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  max-width: 750px;
  margin: 0 auto;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}

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

.disclaimer-title-about {
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.disclaimer-icon-about {
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.35rem);
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }

  .expertise-split-about {
    flex-direction: column;
  }

  .expertise-text-about,
  .expertise-visual-about {
    flex: 1 1 100%;
  }

  .principles-cards-about {
    gap: 1rem;
  }

  .principle-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-about {
    gap: 1rem;
    flex-direction: column;
  }

  .stat-item-about {
    flex: 1 1 100%;
  }

  .hero-section-accounting-about {
    padding: 2rem 0;
  }

  .foundation-section-about,
  .methodology-section-about,
  .principles-section-about,
  .expertise-section-about,
  .commitment-section-about,
  .disclaimer-section-about {
    padding: 2rem 0;
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-bottom: 2px solid var(--color-bg-tertiary);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card-icon i {
  font-size: 24px;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
  flex-grow: 1;
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);
  }
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-top: 2px solid var(--color-bg-tertiary);
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.services-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: var(--ls-normal);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: var(--space-md);
  }

  .service-card-icon {
    width: 40px;
    height: 40px;
  }

  .service-card-icon i {
    font-size: 20px;
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-card {
  background-color: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

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

.faq-card-header {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: background-color var(--transition-fast);
}

.faq-card-header:hover {
  background-color: var(--color-bg-tertiary);
}

.faq-card-header.active {
  background-color: var(--color-bg-tertiary);
}

.faq-card-question {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  text-align: left;
  line-height: var(--lh-normal);
}

.faq-card-icon {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-card-header.active .faq-card-icon {
  transform: rotate(45deg);
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: var(--color-bg-primary);
}

.faq-card-body.active {
  max-height: 500px;
}

.faq-card-answer {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-xl) var(--space-md);
  }

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

  .faq-card-header {
    padding: var(--space-lg);
  }

  .faq-card-answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  letter-spacing: var(--ls-normal);
}

.faq-cta-button:hover {
  background-color: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-xl);
  }

  .faq-cta-title {
    margin-bottom: var(--space-md);
  }

  .faq-cta-text {
    margin-bottom: var(--space-lg);
  }
}

.accounting-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.accounting-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.accounting-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.accounting-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.accounting-docs .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.accounting-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.accounting-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.accounting-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
}

.accounting-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.accounting-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-section strong {
  color: var(--color-text-primary);
  display: inline-block;
  margin-right: var(--space-xs);
}

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

  .accounting-docs .content {
    padding: var(--space-xl) 0;
  }

  .contact-section {
    padding: var(--space-md);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .accounting-docs .content {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (min-width: 1025px) {
  .accounting-docs .container {
    padding: 0 var(--space-lg);
  }

  .accounting-docs .content {
    padding: var(--space-3xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.thank-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 120px;
  height: 120px;
  animation: bounce 2s ease-in-out infinite;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-normal);
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 600;
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-wide);
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  letter-spacing: var(--ls-wide);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .thank-page {
    padding: var(--space-lg);
  }

  .thank-content {
    padding: var(--space-3xl) 0;
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .thank-icon svg {
    width: 140px;
    height: 140px;
  }

  .btn-primary {
    padding: var(--space-md) var(--space-3xl);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  }
}

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-xl);
  }

  .thank-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-icon {
    margin-bottom: var(--space-3xl);
  }

  .thank-icon svg {
    width: 160px;
    height: 160px;
  }

  .thank-title {
    margin-bottom: var(--space-lg);
  }

  .thank-lead {
    margin-bottom: var(--space-xl);
  }

  .thank-description {
    margin-bottom: var(--space-lg);
  }

  .thank-next {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--space-2xl);
  }

  .thank-content {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-icon {
    margin-bottom: var(--space-3xl);
  }

  .btn-primary {
    font-size: 1.05rem;
    padding: var(--space-md) var(--space-3xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .thank-content {
    padding: var(--space-3xl) var(--space-3xl);
  }
}

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
}

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

.error-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  position: relative;
  z-index: 2;
  text-align: center;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 3px solid var(--color-secondary);
  border-radius: var(--radius-2xl);
  opacity: 0.3;
  z-index: 1;
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}

.error-message {
  width: 100%;
  text-align: center;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-sm);
}

.error-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-wide);
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  letter-spacing: var(--ls-normal);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background-color: var(--color-bg-tertiary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: clamp(1.5rem, 4vw, 2rem);
  display: block;
}

.feature-text {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-normal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  letter-spacing: var(--ls-normal);
  line-height: var(--lh-tight);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

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

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

.error-footer {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-normal);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

  .error-content {
    gap: var(--space-xl);
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-code-wrapper {
    max-width: 350px;
  }

  .feature-item {
    padding: var(--space-lg);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .error-code-wrapper {
    max-width: 400px;
  }

  .error-content {
    gap: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .error-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: var(--space-sm) var(--space-md);
  }
}

.contact-page-connect {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-connect-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-connect-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-connect-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
}

.contact-connect-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-connect-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-connect-hero {
    padding: 5rem 2rem;
  }
}

.contact-connect-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 1rem;
  overflow: hidden;
}

.contact-connect-main-content {
  width: 100%;
}

.contact-connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.contact-connect-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-connect-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-connect-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-connect-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-connect-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 700;
  line-height: var(--lh-tight);
}

.contact-connect-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-connect-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-connect-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: var(--ls-normal);
}

.contact-connect-input,
.contact-connect-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  background-color: var(--color-bg-tertiary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md);
  transition: all var(--transition-base);
  width: 100%;
  box-sizing: border-box;
}

.contact-connect-input::placeholder,
.contact-connect-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.contact-connect-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-connect-form-consent {
  padding: var(--space-md);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.contact-connect-consent-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
}

.contact-connect-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-connect-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-connect-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--color-bg-primary);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  width: 100%;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

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

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

.contact-connect-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 700;
  line-height: var(--lh-tight);
}

.contact-connect-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-connect-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-connect-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-connect-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-connect-info-content {
  flex: 1;
}

.contact-connect-info-label {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-weight: 700;
  line-height: var(--lh-tight);
}

.contact-connect-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
}

.contact-connect-info-extra {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-connect-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--lh-tight);
}

.contact-connect-extra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-connect-extra-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--lh-normal);
}

.contact-connect-extra-item::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .contact-connect-main {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-connect-main {
    padding: 4rem 2rem;
  }

  .contact-connect-grid {
    gap: var(--space-3xl);
  }
}

@media (max-width: 767px) {
  .contact-connect-form-wrapper,
  .contact-connect-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-connect-submit {
    padding: var(--space-md) var(--space-md);
  }
}