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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-accent: #0f172a;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  
  --color-text-primary-light: #1e293b;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent-warning: #f59e0b;
  --color-accent-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

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

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

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

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

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

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

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

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

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

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

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

.btn-dark:hover {
  background: var(--color-bg-accent);
  border-color: var(--color-bg-accent);
}

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

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

.btn-block {
  width: 100%;
}

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

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

.card-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.card-accent {
  border-left: 4px solid var(--color-primary);
}

.card-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-dark .card {
  background: var(--color-bg-card);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-unstyled {
  list-style: none;
  margin-left: 0;
}

.list-checked {
  list-style: none;
  margin-left: 0;
}

.list-checked li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-md);
}

.list-checked li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

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

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

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

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

.leading-tight {
  line-height: 1.2;
}

.leading-normal {
  line-height: 1.6;
}

.leading-relaxed {
  line-height: 1.8;
}

.tracking-tight {
  letter-spacing: -0.01em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

.section-dark .divider {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-out;
}

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

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

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

.hidden-mobile {
  display: none;
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
  
  .hidden-desktop {
    display: none;
  }
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.tax-hub-portal {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-index {
  max-width: 800px;
}

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

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #10b981;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
  }
  
  .hero-buttons-index .btn {
    width: 100%;
  }
  
  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

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

.features-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

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

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.card-icon-index {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 10px;
  color: #10b981;
  font-size: 1.75rem;
  flex-shrink: 0;
}

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

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

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

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

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

.benefits-image-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 500px;
}

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

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

.benefits-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-intro-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

.benefit-item-index {
  color: #334155;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

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

@media (max-width: 768px) {
  .benefits-content-index {
    flex-direction: column;
  }
  
  .benefits-image-index,
  .benefits-text-index {
    flex: 1 1 100%;
  }
  
  .benefits-image-index {
    min-height: 250px;
    max-height: 350px;
  }
}

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

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

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

.featured-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

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

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

.featured-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

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

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

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

.featured-footer-index {
  text-align: center;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

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

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

.howworks-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.howworks-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

.step-item-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  transition: all 0.3s ease;
}

.step-item-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.step-number-index {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.step-title-index {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.step-text-index {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-index {
    flex: 1 1 100%;
  }
}

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

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

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

.faq-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.faq-question-index {
  color: #1e293b;
  font-size: clamp(1.05rem, 1.3vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.4;
}

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

@media (max-width: 768px) {
  .faq-item-index {
    border-left-width: 3px;
  }
}

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

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

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

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

.about-intro-index {
  color: #334155;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.about-body-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.8;
  margin: 0;
}

.about-closing-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.8;
  margin: 0;
}

.about-image-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 500px;
}

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

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

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

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

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

.statistics-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.statistics-intro-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

.stat-card-index {
  flex: 1 1 220px;
  max-width: 320px;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-index:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.stat-card-number-index {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
}

.stat-card-text-index {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 768px) {
  .cta-box-index {
    padding: 2rem 1.5rem;
  }
  
  .cta-box-index .btn {
    width: 100%;
  }
}

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

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

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 1rem);
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 0.75vw, 0.65rem) clamp(1rem, 1.5vw, 1.25rem);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

.cookie-btn-accept:hover {
  background: #059669;
  transform: scale(1.05);
}

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

.cookie-btn-decline:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(226, 232, 240, 0.05);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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

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

.footer-about {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.footer-nav-block h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0;
}

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

.footer-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.footer-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-info p {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact-info strong {
  color: var(--color-text-primary-dark);
  font-weight: 600;
}

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

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  margin: 0;
  letter-spacing: 0.3px;
}

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

  .footer-nav-block,
  .footer-contact,
  .footer-legal {
    flex: 1 1 calc(50% - 1rem);
    min-width: 220px;
  }

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

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

  .footer-nav,
  .footer-legal-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

@media (min-width: 1024px) {
  .footer-sections {
    display: flex;
    flex-direction: row;
    gap: clamp(2.5rem, 6vw, 4rem);
  }

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

  .footer-about {
    flex: 0 1 100%;
    max-width: 550px;
  }

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

  .footer-link {
    display: inline-block;
    padding: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  .footer-about p {
    max-width: 100%;
  }

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

  .footer-contact-info {
    gap: 0.5rem;
  }
}
    

.category-page-tax-deductions-spain {
  width: 100%;
  overflow: hidden;
}

.hero-section-tax-deductions-spain {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-tax-deductions-spain {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-tax-deductions-spain {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.hero-header-tax-deductions-spain {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-header-tax-deductions-spain {
    flex: 1 1 50%;
    text-align: left;
  }
}

.hero-title-tax-deductions-spain {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-visual-tax-deductions-spain {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-visual-tax-deductions-spain {
    flex: 1 1 50%;
    min-height: 350px;
  }
}

.hero-visual-tax-deductions-spain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.posts-section-tax-deductions-spain {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-tax-deductions-spain {
  text-align: center;
}

.posts-title-tax-deductions-spain {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.posts-description-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-tax-deductions-spain {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 clamp(280px, 45vw, 350px);
  overflow: hidden;
}

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

.card-tax-deductions-spain img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-tax-deductions-spain {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-light);
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.card-description-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  flex-grow: 1;
}

.card-meta-tax-deductions-spain {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.9rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(0.75rem, 1vw, 1rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.card-reading-time-tax-deductions-spain,
.card-level-tax-deductions-spain,
.card-date-tax-deductions-spain {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted-light);
}

.card-reading-time-tax-deductions-spain i,
.card-level-tax-deductions-spain i,
.card-date-tax-deductions-spain i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-tax-deductions-spain {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.95vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}

.card-link-tax-deductions-spain:hover {
  background: var(--color-primary-hover);
  transform: translateX(4px);
}

.insight-section-tax-deductions-spain {
  background: var(--color-bg-accent);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .insight-content-tax-deductions-spain {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.insight-quote-tax-deductions-spain {
  flex: 1 1 100%;
  border-left: 4px solid var(--color-primary);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 1024px) {
  .insight-quote-tax-deductions-spain {
    flex: 1 1 40%;
  }
}

.insight-text-tax-deductions-spain {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insight-author-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.025rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: 0;
}

.insight-context-tax-deductions-spain {
  flex: 1 1 100%;
}

@media (min-width: 1024px) {
  .insight-context-tax-deductions-spain {
    flex: 1 1 60%;
  }
}

.insight-heading-tax-deductions-spain {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.insight-para-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insight-para-tax-deductions-spain:last-child {
  margin-bottom: 0;
}

.checklist-section-tax-deductions-spain {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-header-tax-deductions-spain {
  text-align: center;
}

.checklist-title-tax-deductions-spain {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.checklist-intro-tax-deductions-spain {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: 0;
}

.checklist-items-tax-deductions-spain {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.checklist-item-tax-deductions-spain {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: flex-start;
}

.checklist-item-tax-deductions-spain i {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-item-text-tax-deductions-spain {
  flex: 1;
}

.checklist-item-title-tax-deductions-spain {
  font-size: clamp(1rem, 2vw + 0.4rem, 1.25rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
  font-weight: 600;
  line-height: 1.3;
}

.checklist-item-desc-tax-deductions-spain {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin-bottom: 0;
}

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

  .hero-header-tax-deductions-spain {
    text-align: center;
  }

  .hero-visual-tax-deductions-spain {
    min-height: 250px;
  }

  .posts-grid-tax-deductions-spain {
    flex-direction: column;
  }

  .card-tax-deductions-spain {
    flex: 1 1 100%;
  }

  .insight-content-tax-deductions-spain {
    flex-direction: column;
  }

  .insight-quote-tax-deductions-spain {
    flex: 1 1 100%;
  }

  .insight-context-tax-deductions-spain {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .posts-grid-tax-deductions-spain {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .card-tax-deductions-spain {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

.main-clasificacion-gastos-deductibles {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-clasificacion-gastos-deductibles {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-clasificacion-gastos-deductibles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-clasificacion-gastos-deductibles a,
.breadcrumbs-clasificacion-gastos-deductibles span {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumbs-clasificacion-gastos-deductibles a:hover {
  color: #10b981;
}

.breadcrumbs-clasificacion-gastos-deductibles span {
  color: #64748b;
}

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

.hero-text-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-clasificacion-gastos-deductibles {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-clasificacion-gastos-deductibles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.meta-item-clasificacion-gastos-deductibles i {
  color: #10b981;
}

.hero-img-clasificacion-gastos-deductibles {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-clasificacion-gastos-deductibles,
  .hero-image-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-clasificacion-gastos-deductibles {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-clasificacion-gastos-deductibles {
    flex-direction: column;
  }

  .intro-text-clasificacion-gastos-deductibles,
  .intro-image-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.categories-section-clasificacion-gastos-deductibles {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-header-clasificacion-gastos-deductibles {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.categories-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.categories-subtitle-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.categories-grid-clasificacion-gastos-deductibles {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-clasificacion-gastos-deductibles {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category-card-clasificacion-gastos-deductibles:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.category-icon-clasificacion-gastos-deductibles {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 8px;
  color: #10b981;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-name-clasificacion-gastos-deductibles {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.category-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .category-card-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documentation-section-clasificacion-gastos-deductibles {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documentation-wrapper-clasificacion-gastos-deductibles {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.documentation-text-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-image-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.documentation-paragraph-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.doc-tips-clasificacion-gastos-deductibles {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tips-heading-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tips-list-clasificacion-gastos-deductibles {
  list-style: none;
  margin-left: 0;
}

.tip-item-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.tip-item-clasificacion-gastos-deductibles::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.documentation-note-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  font-style: italic;
}

.documentation-img-clasificacion-gastos-deductibles {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .documentation-wrapper-clasificacion-gastos-deductibles {
    flex-direction: column;
  }

  .documentation-text-clasificacion-gastos-deductibles,
  .documentation-image-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-clasificacion-gastos-deductibles {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-header-clasificacion-gastos-deductibles {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.mistakes-subtitle-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.mistakes-wrapper-clasificacion-gastos-deductibles {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-clasificacion-gastos-deductibles {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-block-clasificacion-gastos-deductibles {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mistake-title-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mistake-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.mistakes-img-clasificacion-gastos-deductibles {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .mistakes-wrapper-clasificacion-gastos-deductibles {
    flex-direction: column;
  }

  .mistakes-text-clasificacion-gastos-deductibles,
  .mistakes-image-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.action-section-clasificacion-gastos-deductibles {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.action-content-clasificacion-gastos-deductibles {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.action-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.action-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.action-steps-clasificacion-gastos-deductibles {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.step-item-clasificacion-gastos-deductibles {
  flex: 1 1 280px;
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
}

.step-number-clasificacion-gastos-deductibles {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-description-clasificacion-gastos-deductibles {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.action-cta-clasificacion-gastos-deductibles {
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
}

.action-cta-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.action-button-clasificacion-gastos-deductibles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-button-clasificacion-gastos-deductibles:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  text-decoration: none;
}

.disclaimer-section-clasificacion-gastos-deductibles {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-clasificacion-gastos-deductibles {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-title-clasificacion-gastos-deductibles i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.disclaimer-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.related-header-clasificacion-gastos-deductibles {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-clasificacion-gastos-deductibles {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.related-subtitle-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-clasificacion-gastos-deductibles {
  flex: 1 1 320px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-clasificacion-gastos-deductibles:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-image-wrapper-clasificacion-gastos-deductibles {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-img-clasificacion-gastos-deductibles {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-clasificacion-gastos-deductibles {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-clasificacion-gastos-deductibles {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-clasificacion-gastos-deductibles {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-link-clasificacion-gastos-deductibles {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-link-clasificacion-gastos-deductibles:hover {
  color: #0d9488;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-clasificacion-gastos-deductibles {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .intro-section-clasificacion-gastos-deductibles,
  .categories-section-clasificacion-gastos-deductibles,
  .documentation-section-clasificacion-gastos-deductibles,
  .mistakes-section-clasificacion-gastos-deductibles,
  .action-section-clasificacion-gastos-deductibles,
  .disclaimer-section-clasificacion-gastos-deductibles,
  .related-section-clasificacion-gastos-deductibles {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .categories-grid-clasificacion-gastos-deductibles {
    flex-direction: column;
    align-items: stretch;
  }

  .category-card-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
  }

  .action-steps-clasificacion-gastos-deductibles {
    flex-direction: column;
  }

  .step-item-clasificacion-gastos-deductibles {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-clasificacion-gastos-deductibles {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .hero-description-clasificacion-gastos-deductibles {
    font-size: clamp(0.75rem, 0.9vw, 1rem);
  }

  .breadcrumbs-clasificacion-gastos-deductibles {
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  }

  .meta-item-clasificacion-gastos-deductibles {
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  }
}

.main-gastos-deductibles-autonomos {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-text-wrapper-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-gastos-deductibles-autonomos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-gastos-deductibles-autonomos a {
  color: #10b981;
  transition: color 0.3s ease;
}

.breadcrumbs-gastos-deductibles-autonomos a:hover {
  color: #059669;
}

.breadcrumbs-gastos-deductibles-autonomos span {
  color: #64748b;
}

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

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

.hero-meta-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #10b981;
  border-radius: 0 8px 8px 0;
}

.meta-item-gastos-deductibles-autonomos {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-gastos-deductibles-autonomos strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-image-wrapper-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gastos-deductibles-autonomos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-gastos-deductibles-autonomos,
  .hero-image-wrapper-gastos-deductibles-autonomos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-gastos-deductibles-autonomos {
    font-size: 0.75rem;
  }
}

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

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

.intro-text-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-highlight-gastos-deductibles-autonomos {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-gastos-deductibles-autonomos {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.intro-image-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-gastos-deductibles-autonomos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-gastos-deductibles-autonomos {
    flex-direction: column;
  }

  .intro-text-gastos-deductibles-autonomos,
  .intro-image-gastos-deductibles-autonomos {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.categories-section-gastos-deductibles-autonomos {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.categories-header-gastos-deductibles-autonomos {
  text-align: center;
}

.categories-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.categories-subtitle-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.categories-grid-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-gastos-deductibles-autonomos {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.category-card-gastos-deductibles-autonomos:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon-gastos-deductibles-autonomos {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 8px;
  color: #10b981;
  font-size: 1.5rem;
}

.card-title-gastos-deductibles-autonomos {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .category-card-gastos-deductibles-autonomos {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .category-card-gastos-deductibles-autonomos {
    flex: 1 1 100%;
  }
}

.details-section-gastos-deductibles-autonomos {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.details-text-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.details-paragraph-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.details-list-gastos-deductibles-autonomos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.list-item-gastos-deductibles-autonomos {
  padding-left: 1.5rem;
  position: relative;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

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

.details-image-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-img-gastos-deductibles-autonomos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .details-content-gastos-deductibles-autonomos {
    flex-direction: column;
  }

  .details-text-gastos-deductibles-autonomos,
  .details-image-gastos-deductibles-autonomos {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documentation-section-gastos-deductibles-autonomos {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.documentation-image-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-img-gastos-deductibles-autonomos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.documentation-text-gastos-deductibles-autonomos {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documentation-paragraph-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.documentation-box-gastos-deductibles-autonomos {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #10b981;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.box-title-gastos-deductibles-autonomos {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.doc-list-gastos-deductibles-autonomos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.doc-item-gastos-deductibles-autonomos {
  padding-left: 1.5rem;
  position: relative;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.doc-item-gastos-deductibles-autonomos::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .documentation-content-gastos-deductibles-autonomos {
    flex-direction: column;
  }

  .documentation-image-gastos-deductibles-autonomos,
  .documentation-text-gastos-deductibles-autonomos {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.avoid-section-gastos-deductibles-autonomos {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.avoid-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.avoid-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.avoid-subtitle-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.avoid-grid-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.avoid-card-gastos-deductibles-autonomos {
  flex: 1 1 calc(50% - 1rem);
  min-width: 240px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #fee2e2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.avoid-card-gastos-deductibles-autonomos:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
}

.avoid-card-title-gastos-deductibles-autonomos {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ef4444;
  margin: 0;
}

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

@media (max-width: 768px) {
  .avoid-card-gastos-deductibles-autonomos {
    flex: 1 1 100%;
  }
}

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

.conclusion-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-container-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-item-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.step-number-gastos-deductibles-autonomos {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.step-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.step-text-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-gastos-deductibles-autonomos {
    flex-direction: column;
  }

  .step-number-gastos-deductibles-autonomos {
    min-width: auto;
  }
}

.conclusion-quote-gastos-deductibles-autonomos {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

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

.conclusion-final-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.disclaimer-section-gastos-deductibles-autonomos {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-gastos-deductibles-autonomos {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-icon-gastos-deductibles-autonomos {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-gastos-deductibles-autonomos {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.disclaimer-text-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-gastos-deductibles-autonomos {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-gastos-deductibles-autonomos {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-gastos-deductibles-autonomos:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-image-gastos-deductibles-autonomos {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-gastos-deductibles-autonomos {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-gastos-deductibles-autonomos {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-gastos-deductibles-autonomos {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-gastos-deductibles-autonomos {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-gastos-deductibles-autonomos {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-link-gastos-deductibles-autonomos:hover {
  color: #059669;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .related-card-gastos-deductibles-autonomos {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-gastos-deductibles-autonomos {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-gastos-deductibles-autonomos,
  .intro-section-gastos-deductibles-autonomos,
  .categories-section-gastos-deductibles-autonomos,
  .details-section-gastos-deductibles-autonomos,
  .documentation-section-gastos-deductibles-autonomos,
  .avoid-section-gastos-deductibles-autonomos,
  .conclusion-section-gastos-deductibles-autonomos,
  .disclaimer-section-gastos-deductibles-autonomos,
  .related-section-gastos-deductibles-autonomos {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

html {
  scroll-behavior: smooth;
}

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

.main-documentacion-fiscal-organizacion {
  width: 100%;
  overflow: hidden;
}

.hero-section-documentacion-fiscal-organizacion {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-documentacion-fiscal-organizacion {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-documentacion-fiscal-organizacion a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-documentacion-fiscal-organizacion a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-documentacion-fiscal-organizacion span {
  color: #64748b;
}

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

.hero-text-wrapper-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-documentacion-fiscal-organizacion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-documentacion-fiscal-organizacion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-documentacion-fiscal-organizacion i {
  color: #10b981;
}

.hero-image-wrapper-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-wrapper-documentacion-fiscal-organizacion,
  .hero-image-wrapper-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-documentacion-fiscal-organizacion {
    gap: 1rem;
  }
}

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

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

.intro-text-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-image-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-documentacion-fiscal-organizacion {
    flex-direction: column;
  }

  .intro-text-documentacion-fiscal-organizacion,
  .intro-image-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documents-section-documentacion-fiscal-organizacion {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documents-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.documents-text-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documents-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.documents-list-documentacion-fiscal-organizacion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.documents-list-item-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.7;
}

.documents-list-item-documentacion-fiscal-organizacion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.documents-image-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .documents-content-documentacion-fiscal-organizacion {
    flex-direction: column;
  }

  .documents-text-documentacion-fiscal-organizacion,
  .documents-image-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.retention-section-documentacion-fiscal-organizacion {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.retention-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.retention-image-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.retention-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.retention-text-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.retention-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.retention-highlight-documentacion-fiscal-organizacion {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-md);
}

.retention-highlight-text-documentacion-fiscal-organizacion {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .retention-content-documentacion-fiscal-organizacion {
    flex-direction: column;
  }

  .retention-image-documentacion-fiscal-organizacion,
  .retention-text-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.organization-section-documentacion-fiscal-organizacion {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.organization-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.organization-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.organization-card-documentacion-fiscal-organizacion {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

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

.card-number-documentacion-fiscal-organizacion {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.card-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .organization-card-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-documentacion-fiscal-organizacion {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.practical-list-documentacion-fiscal-organizacion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practical-list-item-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.7;
}

.practical-list-item-documentacion-fiscal-organizacion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.practical-image-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .practical-content-documentacion-fiscal-organizacion {
    flex-direction: column;
  }

  .practical-text-documentacion-fiscal-organizacion,
  .practical-image-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-documentacion-fiscal-organizacion {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-subtitle-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.8;
}

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

.tools-item-documentacion-fiscal-organizacion {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  text-align: center;
}

.tools-icon-documentacion-fiscal-organizacion {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  color: #10b981;
  font-size: 1.75rem;
}

.tools-item-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-item-text-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tools-item-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.checklist-section-documentacion-fiscal-organizacion {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.checklist-text-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.checklist-box-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.checklist-item-documentacion-fiscal-organizacion {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.checklist-check-documentacion-fiscal-organizacion {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.checklist-text-item-documentacion-fiscal-organizacion {
  flex: 1;
}

.checklist-image-documentacion-fiscal-organizacion {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .checklist-content-documentacion-fiscal-organizacion {
    flex-direction: column;
  }

  .checklist-text-documentacion-fiscal-organizacion,
  .checklist-image-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-documentacion-fiscal-organizacion {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.conclusion-highlight-documentacion-fiscal-organizacion {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.conclusion-highlight-text-documentacion-fiscal-organizacion {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.disclaimer-section-documentacion-fiscal-organizacion {
  background: #0f172a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-documentacion-fiscal-organizacion {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-icon-documentacion-fiscal-organizacion {
  color: #10b981;
  font-size: 2rem;
}

.disclaimer-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.related-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-documentacion-fiscal-organizacion {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-documentacion-fiscal-organizacion {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-documentacion-fiscal-organizacion:hover .related-card-img-documentacion-fiscal-organizacion {
  transform: scale(1.05);
}

.related-card-body-documentacion-fiscal-organizacion {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-documentacion-fiscal-organizacion {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-documentacion-fiscal-organizacion {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-documentacion-fiscal-organizacion:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-documentacion-fiscal-organizacion {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-documentacion-fiscal-organizacion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-errores-deducciones-fiscales {
  width: 100%;
  overflow: hidden;
}

.hero-section-errores-deducciones-fiscales {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-errores-deducciones-fiscales {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-errores-deducciones-fiscales a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-errores-deducciones-fiscales a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-errores-deducciones-fiscales span {
  color: #64748b;
}

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

.hero-text-block-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-errores-deducciones-fiscales {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-errores-deducciones-fiscales {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-errores-deducciones-fiscales {
  display: inline-block;
}

.meta-separator-errores-deducciones-fiscales {
  color: #64748b;
}

.hero-image-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-block-errores-deducciones-fiscales,
  .hero-image-block-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-errores-deducciones-fiscales {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.intro-section-errores-deducciones-fiscales {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.intro-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-errores-deducciones-fiscales {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .intro-text-errores-deducciones-fiscales,
  .intro-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-01-section-errores-deducciones-fiscales {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-01-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-01-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-01-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-01-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-01-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-01-highlight-errores-deducciones-fiscales {
  background: #e0f2fe;
  border-left: 4px solid #0ea5e9;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-label-errores-deducciones-fiscales {
  display: block;
  color: #0369a1;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
}

.highlight-text-errores-deducciones-fiscales {
  color: #0c4a6e;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.error-01-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-01-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-01-text-errores-deducciones-fiscales,
  .error-01-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-02-section-errores-deducciones-fiscales {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-02-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-02-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-02-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-02-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-02-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-02-checklist-errores-deducciones-fiscales {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.checklist-title-errores-deducciones-fiscales {
  color: #166534;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 1rem;
}

.checklist-list-errores-deducciones-fiscales {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist-item-errores-deducciones-fiscales {
  color: #166534;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.checklist-item-errores-deducciones-fiscales::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.2rem;
}

.error-02-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-02-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-02-text-errores-deducciones-fiscales,
  .error-02-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-03-section-errores-deducciones-fiscales {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-03-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-03-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-03-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-03-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-03-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-03-examples-errores-deducciones-fiscales {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.examples-title-errores-deducciones-fiscales {
  color: #92400e;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.examples-title-errores-deducciones-fiscales:first-child {
  margin-top: 0;
}

.examples-text-errores-deducciones-fiscales {
  color: #b45309;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.examples-text-errores-deducciones-fiscales:last-child {
  margin-bottom: 0;
}

.error-03-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-03-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-03-text-errores-deducciones-fiscales,
  .error-03-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-04-section-errores-deducciones-fiscales {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-04-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-04-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-04-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-04-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-04-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-04-requirements-errores-deducciones-fiscales {
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.requirements-title-errores-deducciones-fiscales {
  color: #5b21b6;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 1rem;
}

.requirements-list-errores-deducciones-fiscales {
  list-style: none;
  margin: 0;
  padding: 0;
}

.requirement-item-errores-deducciones-fiscales {
  color: #5b21b6;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.requirement-item-errores-deducciones-fiscales::before {
  content: '';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.2rem;
}

.error-04-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-04-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-04-text-errores-deducciones-fiscales,
  .error-04-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-05-06-section-errores-deducciones-fiscales {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.error-05-06-section-errores-deducciones-fiscales .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.error-05-06-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-05-06-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-05-06-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-05-06-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-05-06-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-05-06-list-errores-deducciones-fiscales {
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.list-title-errores-deducciones-fiscales {
  color: #1e293b;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.list-title-errores-deducciones-fiscales:first-child {
  margin-top: 0;
}

.list-items-errores-deducciones-fiscales {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item-errores-deducciones-fiscales {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.list-item-errores-deducciones-fiscales::before {
  content: '';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.2rem;
}

.error-05-06-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-05-06-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-05-06-text-errores-deducciones-fiscales,
  .error-05-06-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-07-section-errores-deducciones-fiscales {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-07-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-07-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-07-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-07-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-07-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-07-solution-errores-deducciones-fiscales {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.solution-title-errores-deducciones-fiscales {
  color: #065f46;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0.5rem;
}

.solution-text-errores-deducciones-fiscales {
  color: #047857;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.error-07-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-07-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-07-text-errores-deducciones-fiscales,
  .error-07-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.error-08-section-errores-deducciones-fiscales {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.error-08-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.error-08-text-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-08-image-errores-deducciones-fiscales {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-08-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.error-08-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-08-tip-errores-deducciones-fiscales {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.tip-label-errores-deducciones-fiscales {
  color: #92400e;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0.5rem;
}

.tip-text-errores-deducciones-fiscales {
  color: #b45309;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.error-08-img-errores-deducciones-fiscales {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .error-08-content-errores-deducciones-fiscales {
    flex-direction: column;
  }

  .error-08-text-errores-deducciones-fiscales,
  .error-08-image-errores-deducciones-fiscales {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-errores-deducciones-fiscales {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-title-errores-deducciones-fiscales {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
}

.conclusion-steps-errores-deducciones-fiscales {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.step-item-errores-deducciones-fiscales {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-errores-deducciones-fiscales {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.step-content-errores-deducciones-fiscales {
  flex: 1;
  padding-top: 0.25rem;
}

.step-text-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.step-text-errores-deducciones-fiscales strong {
  color: #1e293b;
  font-weight: 600;
}

.conclusion-final-errores-deducciones-fiscales {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .step-item-errores-deducciones-fiscales {
    gap: 1rem;
  }
}

.disclaimer-section-errores-deducciones-fiscales {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-errores-deducciones-fiscales {
  display: flex;
  flex-direction: column;
}

.disclaimer-box-errores-deducciones-fiscales {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #0ea5e9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
}

.disclaimer-title-errores-deducciones-fiscales {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.disclaimer-text-errores-deducciones-fiscales {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-errores-deducciones-fiscales:last-child {
  margin-bottom: 0;
}

.related-section-errores-deducciones-fiscales {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.related-title-errores-deducciones-fiscales {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

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

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

.related-card-errores-deducciones-fiscales:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.related-card-image-errores-deducciones-fiscales {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-errores-deducciones-fiscales {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-errores-deducciones-fiscales {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-errores-deducciones-fiscales {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-errores-deducciones-fiscales {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-errores-deducciones-fiscales:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-errores-deducciones-fiscales {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-card-errores-deducciones-fiscales {
    flex: 1 1 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.hero-gateway-about {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-muted-dark);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

.stat-number-about {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.section-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.expertise-card-about:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.card-icon-about {
  font-size: 2rem;
  color: var(--color-primary);
}

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

.card-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

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

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

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

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

.story-visual-about {
  flex: 1 1 45%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.story-visual-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-paragraph-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
}

.story-paragraph-about strong {
  color: #ffffff;
  font-weight: 700;
}

.methodology-section-about {
  background: var(--color-bg-primary);
  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, 3vw, 2rem);
}

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  min-width: 80px;
}

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

.step-title-about {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

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

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

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

.value-card-about {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--color-primary);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.value-card-about:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateX(4px);
}

.value-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
}

.value-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

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

.quote-wrapper-about {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.8;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-primary);
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
}

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

  .story-split-about {
    flex-direction: column;
  }

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

  .story-visual-about {
    flex: 1 1 100%;
    min-height: 250px;
  }

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

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

  .expertise-grid-about {
    grid-template-columns: 1fr;
  }

  .approach-grid-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number-about {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  overflow: hidden;
}

.services-hero {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.services-hero__content {
  padding: var(--space-lg) 0;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 500px;
}

.services-hero__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background-color: var(--color-bg-accent);
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}

.services-cards-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
}

.services-cards-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-card:hover {
  background-color: rgba(16, 185, 129, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.services-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
  flex-shrink: 0;
}

.services-card__icon svg {
  width: 24px;
  height: 24px;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.3;
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.services-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.services-card__highlight {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--color-primary-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
  font-weight: 500;
}

@media (min-width: 768px) {
  .services-cards-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cards-section__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cards-section__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-details {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-accent);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-details__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.services-details__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-details__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.3;
}

.services-details__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
}

.services-details__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background-color: var(--color-bg-primary);
}

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

@media (min-width: 768px) {
  .services-details {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-details__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.services-cta {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.services-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.3;
}

.services-cta__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.services-cta__button {
  display: inline-block;
  padding: 0.95rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  align-self: center;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

@media (max-width: 640px) {
  .services-card {
    padding: var(--space-md);
  }

  .services-hero__content {
    padding: var(--space-md) 0;
  }
}

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

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  font-weight: 400;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.faq-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-toggle {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  text-align: left;
  transition: all 0.2s ease;
}

.faq-toggle:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.faq-toggle:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-toggle.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

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

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.faq-cta-content {
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

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

.faq-cta-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .faq-cta-content {
    text-align: left;
  }

  .faq-cta-image {
    max-height: 400px;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .faq-cta-container {
    gap: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-toggle,
  .faq-icon,
  .faq-answer,
  .faq-cta-button {
    transition: none;
  }
}

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

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.legal-docs .last-updated {
  color: var(--color-text-muted-light);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

.legal-docs section {
  overflow: hidden;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-light);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs h2 {
    margin-top: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  animation: scaleIn 0.6s ease-out;
}

@media (min-width: 768px) {
  .thank-icon svg {
    width: 100px;
    height: 100px;
  }
  
  .thank-icon {
    margin-bottom: var(--space-xl);
  }
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  h1 {
    margin-bottom: var(--space-lg);
  }
}

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .lead {
    margin-bottom: var(--space-lg);
  }
}

.description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .description {
    margin-bottom: var(--space-lg);
  }
}

.confirmation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .confirmation {
    margin-bottom: var(--space-3xl);
  }
}

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .btn-return {
    padding: var(--space-md) var(--space-xl);
  }
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper {
    animation: none;
  }
  
  .thank-icon svg {
    animation: none;
  }
  
  .btn-return {
    transition: background-color 0.3s ease;
  }
  
  .btn-return:hover {
    transform: none;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: rotate 8s linear infinite;
}

.error-decoration::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  top: -15px;
  left: -15px;
  opacity: 0.1;
  animation: rotate-reverse 10s linear infinite;
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.8;
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
}

.suggestions-title {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  border-left: 2px solid var(--color-primary);
  position: relative;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: var(--space-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-code-container {
    width: 250px;
    height: 250px;
  }
  
  .error-decoration {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-message {
    gap: var(--space-lg);
  }
  
  .error-suggestions {
    padding: var(--space-xl);
  }
  
  .suggestions-list {
    gap: var(--space-md);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .suggestions-list li {
    flex: 0 1 auto;
    border-left: none;
    border-bottom: 2px solid var(--color-primary);
    padding: var(--space-sm) 0 var(--space-md) 0;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
  }
  
  .error-code-container {
    width: 280px;
    height: 280px;
  }
  
  .error-decoration {
    width: 350px;
    height: 350px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }
  
  .error-decoration {
    animation: none;
  }
  
  .error-decoration::before {
    animation: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

.contact-get-in-touch-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-get-in-touch-hero-content {
  text-align: center;
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-form-header {
  margin-bottom: var(--space-lg);
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.contact-get-in-touch-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-get-in-touch-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  display: block;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  line-height: 1.5;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-get-in-touch-form-privacy {
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-get-in-touch-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.9rem);
  color: var(--color-text-muted-dark);
  line-height: 1.6;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
}

.contact-get-in-touch-info-header {
  margin-bottom: var(--space-lg);
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.contact-get-in-touch-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-get-in-touch-info-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-get-in-touch-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-item-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-xs);
}

.contact-get-in-touch-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-info-box {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-get-in-touch-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.contact-get-in-touch-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-faq {
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-get-in-touch-faq-content {
  width: 100%;
}

.contact-get-in-touch-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  text-align: center;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.contact-get-in-touch-faq-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.contact-get-in-touch-faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-get-in-touch-faq-item {
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-get-in-touch-faq-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.contact-get-in-touch-faq-item-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.contact-get-in-touch-faq-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-main {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-grid {
    gap: var(--space-3xl);
  }

  .contact-get-in-touch-form-wrapper {
    flex: 1 1 400px;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 400px;
  }

  .contact-get-in-touch-faq {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-faq-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-main {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-faq {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-get-in-touch-form-wrapper,
  .contact-get-in-touch-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-get-in-touch-faq-items {
    grid-template-columns: 1fr;
  }
}

   .header-deduccion-deck {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .header-deduccion-deck-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .header-deduccion-deck-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .header-deduccion-deck-brand:hover {
    opacity: 0.8;
  }
  
  .header-deduccion-deck-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  .header-deduccion-deck-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }
  
  .header-deduccion-deck-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  
  .header-deduccion-deck-nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .header-deduccion-deck-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
  }
  
  .header-deduccion-deck-nav-link:hover {
    color: var(--color-primary);
  }
  
  .header-deduccion-deck-nav-link:hover::after {
    width: 100%;
  }
  
  .header-deduccion-deck-cta-button {
    display: none;
    padding: 0.65rem 1.5rem;
    background: var(--color-primary);
    color: #000000;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
  }
  
  .header-deduccion-deck-cta-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .header-deduccion-deck-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
  }
  
  .header-deduccion-deck-mobile-toggle:hover {
    transform: scale(1.1);
  }
  
  .header-deduccion-deck-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .header-deduccion-deck-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-primary);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    z-index: var(--z-modal);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .header-deduccion-deck-mobile-menu.active {
    right: 0;
  }
  
  .header-deduccion-deck-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .header-deduccion-deck-mobile-close {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .header-deduccion-deck-mobile-close:hover {
    transform: rotate(90deg);
  }
  
  .header-deduccion-deck-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
  }
  
  .header-deduccion-deck-mobile-link {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-secondary-dark);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }
  
  .header-deduccion-deck-mobile-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
  }
  
  .header-deduccion-deck-mobile-cta {
    display: block;
    margin: 1.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--color-primary);
    color: #000000;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }
  
  .header-deduccion-deck-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  @media (min-width: 768px) {
    .header-deduccion-deck-container {
      height: 80px;
    }
  
    .header-deduccion-deck-desktop-nav {
      display: flex;
    }
  
    .header-deduccion-deck-cta-button {
      display: inline-block;
    }
  
    .header-deduccion-deck-mobile-toggle {
      display: none;
    }
  
    .header-deduccion-deck-mobile-menu {
      display: none;
    }
  }