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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #94a3b8;
  --color-text-muted-dark: #64748b;
  
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #9ca3af;
  
  
  --color-primary: #d4662b;
  --color-primary-hover: #e87d3f;
  --color-primary-light: #f5e6dc;
  --color-secondary: #2c5f8d;
  --color-secondary-hover: #1e4a6a;
  --color-accent-gold: #c9a961;
  --color-accent-red: #c41e3a;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 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);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary-light);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

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

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

p {
  margin-bottom: var(--space-md);
  font-weight: 400;
}

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

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

.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.hero-content h1 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-content p {
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 0 !important;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary-dark);
  border-color: var(--color-primary);
}

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

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

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

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.section-light-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) var(--space-lg);
}

.section-light-gray h2 {
  color: var(--color-text-primary-light);
}

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

.section-dark-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

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

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

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.card-light {
  background: var(--color-bg-card-light);
  color: var(--color-text-primary-light);
  border-color: #e2e8f0;
  box-shadow: var(--shadow-sm);
}

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

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

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

.feature {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.feature-content h4 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

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

.section-dark-accent .feature-icon {
  background: var(--color-accent-gold);
}

.section-dark-accent .feature-content h4 {
  color: var(--color-text-primary-dark);
}

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

.steps {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

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

.section-dark-accent .step-number {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark-accent);
}

.section-dark-accent .step-content h4 {
  color: var(--color-text-primary-dark);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--color-text-secondary-light);
  font-weight: 500;
}

.section-dark-accent .stat-number {
  color: var(--color-accent-gold);
}

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

.testimonial {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card-light);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  color: var(--color-text-primary-light);
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-xs);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text-secondary-light);
}

.testimonial-rating {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h4 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: var(--color-text-secondary-dark);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--color-text-secondary-dark);
}

.footer-bottom p {
  margin: 0;
}

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

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

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

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

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

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

  .section-hero,
  .section-light,
  .section-light-gray,
  .section-dark-accent {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .step {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-hero,
  .section-light,
  .section-light-gray,
  .section-dark-accent {
    padding: var(--space-xl) var(--space-sm);
  }

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@keyframes fadeInUp {
  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);
  }
}

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

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

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

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

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

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

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

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

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.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); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.max-width-md {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.max-width-lg {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

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

.accent-gold { color: var(--color-accent-gold); }
.accent-red { color: var(--color-accent-red); }

.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;
}
.header-cuenta-vault {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(212, 102, 43, 0.15);
  position: static;
  width: 100%;
  z-index: 1000;
}

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

.header-cuenta-vault-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-cuenta-vault-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-cuenta-vault-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.header-cuenta-vault-nav-link {
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.header-cuenta-vault-nav-link:hover {
  color: var(--color-primary);
}

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

.header-cuenta-vault-nav-link:hover::after {
  width: 100%;
}

.header-cuenta-vault-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cuenta-vault-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 102, 43, 0.25);
}

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

.header-cuenta-vault-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-cuenta-vault-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-cuenta-vault-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-cuenta-vault-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-cuenta-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-accent);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

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

.header-cuenta-vault-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 102, 43, 0.1);
}

.header-cuenta-vault-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.header-cuenta-vault-mobile-close:active {
  transform: scale(0.9);
}

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

.header-cuenta-vault-mobile-link {
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(212, 102, 43, 0.1);
  transition: all 0.3s ease;
}

.header-cuenta-vault-mobile-link:hover {
  background: rgba(212, 102, 43, 0.1);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-cuenta-vault-mobile-cta {
  color: var(--color-text-primary-dark);
  background: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.5rem;
  margin: 1.5rem;
  border-radius: 6px;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.header-cuenta-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 102, 43, 0.25);
}

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

  .header-cuenta-vault-cta-button {
    display: block;
  }

  .header-cuenta-vault-mobile-toggle {
    display: none;
  }

  .header-cuenta-vault-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-cuenta-vault-mobile-menu {
    width: 85%;
    max-width: 400px;
  }

  .header-cuenta-vault-logo-text {
    font-size: 1rem;
  }
}

    .pl-statement-hub {
  width: 100%;
}

.hero-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 102, 43, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-title-index {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-subtitle-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #94a3b8;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-cta-index {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.btn-primary-index {
  background: #d4662b;
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 102, 43, 0.3);
}

.btn-primary-index:hover {
  background: #e87d3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 102, 43, 0.4);
}

.btn-secondary-index {
  background: transparent;
  color: #ffffff;
  border: 2px solid #d4662b;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-index:hover {
  background: rgba(212, 102, 43, 0.1);
  border-color: #e87d3f;
}

.hero-stats-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #d4662b;
  font-family: var(--font-heading);
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 102, 43, 0.1);
  color: #d4662b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.benefits-title-index {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.benefits-subtitle-index {
  font-size: 1rem;
  color: #475569;
  font-weight: 400;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #d4662b;
}

.benefit-icon-index {
  width: 50px;
  height: 50px;
  background: #d4662b;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.benefit-card-title-index {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  font-family: var(--font-heading);
}

.benefit-card-text-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

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

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

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

.about-title-index {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

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

.about-text-index {
  flex: 1 1 300px;
  min-width: 280px;
}

.about-paragraph-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-paragraph-index:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-cta-index {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.about-image-index {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.faq-title-index {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.faq-subtitle-index {
  font-size: 1rem;
  color: #475569;
  font-weight: 400;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #d4662b;
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}

.faq-question-index {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.faq-answer-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
}

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

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

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

.posts-title-index {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.posts-subtitle-index {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card-index:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4662b;
  box-shadow: 0 20px 40px rgba(212, 102, 43, 0.2);
}

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

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

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

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

.post-title-index {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.4;
}

.post-description-index {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  flex: 1;
}

.post-link-index {
  color: #d4662b;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.post-link-index:hover {
  color: #e87d3f;
  transform: translateX(4px);
}

.posts-footer-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn-secondary-light-index {
  background: transparent;
  color: #ffffff;
  border: 2px solid #d4662b;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-light-index:hover {
  background: #d4662b;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

.testimonials-title-index {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.testimonials-subtitle-index {
  font-size: 1rem;
  color: #475569;
  font-weight: 400;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  box-shadow: 0 12px 28px rgba(212, 102, 43, 0.15);
  border-color: #d4662b;
  transform: translateY(-4px);
}

.testimonial-rating-index {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonial-rating-index i {
  font-size: 0.875rem;
}

.testimonial-text-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  font-style: italic;
}

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

.testimonial-author-name-index {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-author-role-index {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

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

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

.cta-box-index {
  max-width: 600px;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #d4662b 0%, #e87d3f 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(212, 102, 43, 0.3);
}

.cta-title-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.25rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.cta-text-index {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: #d4662b;
  box-shadow: none;
}

.cta-box-index .btn-primary-index:hover {
  background: #f8fafc;
  color: #e87d3f;
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
  .hero-cta-index {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
  }

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

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

  .testimonials-grid-index,
  .benefits-grid-index,
  .posts-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card-index,
  .benefit-card-index,
  .post-card-index {
    width: 100%;
    max-width: 100%;
  }

  .cookie-banner-index {
    flex-direction: column;
    text-align: center;
  }

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

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

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

@media (max-width: 480px) {
  .hero-section-index {
    min-height: 70vh;
  }

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

  .hero-stats-index {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .benefits-title-index,
  .about-title-index,
  .faq-title-index,
  .posts-title-index,
  .testimonials-title-index {
    font-size: 1.5rem;
  }

  .benefit-card-index,
  .faq-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-box-index {
    padding: 1.5rem 1rem;
  }

  .cta-title-index {
    font-size: 1.5rem;
  }
}

    .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 {
  display: block;
  max-width: 600px;
}

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

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

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

.footer-nav-list,
.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-direction: row;
}

.footer-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  line-height: 1.6;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-auto-rows: auto;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .footer-link {
    display: block;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    grid-column: span 1;
  }
}

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

.category-page-profit-loss-statement {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-profit-loss-statement {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section-profit-loss-statement::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-profit-loss-statement {
  position: relative;
  z-index: 1;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}

.hero-title-profit-loss-statement {
  color: var(--color-text-primary-dark);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}

.hero-subtitle-profit-loss-statement {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-accent-gold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.hero-description-profit-loss-statement {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-cta-profit-loss-statement {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.posts-section-profit-loss-statement {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-profit-loss-statement {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.posts-header-profit-loss-statement {
  text-align: center;
}

.posts-title-profit-loss-statement {
  color: var(--color-text-primary-light);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.posts-subtitle-profit-loss-statement {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-profit-loss-statement {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card-profit-loss-statement:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-profit-loss-statement {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title-profit-loss-statement {
  color: var(--color-text-primary-light);
  font-size: clamp(1.05rem, 2vw + 0.3rem, 1.35rem);
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.4;
}

.card-description-profit-loss-statement {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.card-meta-profit-loss-statement {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.2rem, 0.9rem);
  color: var(--color-text-secondary-light);
}

.card-reading-time-profit-loss-statement,
.card-level-profit-loss-statement,
.card-date-profit-loss-statement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-profit-loss-statement i,
.card-level-profit-loss-statement i,
.card-date-profit-loss-statement i {
  color: var(--color-primary);
}

.card-link-profit-loss-statement {
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.card-link-profit-loss-statement:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.additional-section-one-profit-loss-statement {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.additional-content-one-profit-loss-statement {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.additional-header-one-profit-loss-statement {
  text-align: center;
}

.additional-title-one-profit-loss-statement {
  color: var(--color-text-primary-light);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.additional-subtitle-one-profit-loss-statement {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.concept-card-profit-loss-statement {
  background: var(--color-bg-card-light);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.concept-card-profit-loss-statement:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.concept-name-profit-loss-statement {
  color: var(--color-text-primary-light);
  font-size: clamp(1rem, 2vw + 0.3rem, 1.3rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  color: var(--color-primary);
}

.concept-text-profit-loss-statement {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
}

.additional-section-two-profit-loss-statement {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.additional-content-two-profit-loss-statement {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.additional-header-two-profit-loss-statement {
  text-align: center;
}

.additional-title-two-profit-loss-statement {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.additional-subtitle-two-profit-loss-statement {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-profit-loss-statement {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.step-item-profit-loss-statement {
  display: flex;
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: flex-start;
}

.step-number-profit-loss-statement {
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw + 0.3rem, 1.75rem);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content-profit-loss-statement {
  flex: 1;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.step-title-profit-loss-statement {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.05rem, 2vw + 0.3rem, 1.35rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.step-text-profit-loss-statement {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .posts-grid-profit-loss-statement {
    flex-direction: column;
    align-items: center;
  }

  .card-profit-loss-statement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .concepts-grid-profit-loss-statement {
    grid-template-columns: 1fr;
  }

  .hero-cta-profit-loss-statement {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-profit-loss-statement .btn {
    width: 100%;
  }

  .step-item-profit-loss-statement {
    gap: 1rem;
  }

  .step-number-profit-loss-statement {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero-section-profit-loss-statement {
    min-height: auto;
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-title-profit-loss-statement {
    font-size: 1.5rem;
  }

  .posts-title-profit-loss-statement,
  .additional-title-one-profit-loss-statement,
  .additional-title-two-profit-loss-statement {
    font-size: 1.5rem;
  }

  .card-profit-loss-statement {
    max-width: 100%;
  }

  .card-image-profit-loss-statement {
    height: 180px;
  }

  .step-number-profit-loss-statement {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step-item-profit-loss-statement {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-content-profit-loss-statement {
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .posts-grid-profit-loss-statement {
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .card-profit-loss-statement {
    flex: 1 1 calc(25% - 2rem);
    max-width: none;
  }

  .step-item-profit-loss-statement:nth-child(odd) {
    flex-direction: row;
  }

  .step-item-profit-loss-statement:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.main-estructura-estado-resultados {
  width: 100%;
  overflow: hidden;
}

.hero-section-estructura-estado-resultados {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: 3rem var(--space-lg) 4rem;
  overflow: hidden;
}

.hero-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.breadcrumbs-estructura-estado-resultados {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs-estructura-estado-resultados a {
  color: #d4662b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-estructura-estado-resultados a:hover {
  color: #e87d3f;
  text-decoration: underline;
}

.breadcrumbs-estructura-estado-resultados span {
  color: #64748b;
}

.hero-content-estructura-estado-resultados {
  margin-bottom: 3rem;
  max-width: 800px;
}

.hero-title-estructura-estado-resultados {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-estructura-estado-resultados {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-estructura-estado-resultados {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.meta-item-estructura-estado-resultados {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.meta-separator-estructura-estado-resultados {
  color: #64748b;
}

.hero-image-wrapper-estructura-estado-resultados {
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.hero-image-estructura-estado-resultados {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.intro-section-estructura-estado-resultados {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.intro-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.intro-wrapper-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-estructura-estado-resultados {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.key-fact-estructura-estado-resultados {
  background: #f0f9ff;
  border-left: 4px solid #d4662b;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.fact-label-estructura-estado-resultados {
  color: #0f172a;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.fact-text-estructura-estado-resultados {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.intro-image-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-estructura-estado-resultados img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.structure-section-estructura-estado-resultados {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.structure-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.structure-header-estructura-estado-resultados {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.structure-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.structure-subtitle-estructura-estado-resultados {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
}

.structure-steps-estructura-estado-resultados {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number-estructura-estado-resultados {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4662b 0%, #e87d3f 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.step-content-estructura-estado-resultados {
  flex: 1;
}

.step-title-estructura-estado-resultados {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-text-estructura-estado-resultados {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.breakdown-section-estructura-estado-resultados {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.breakdown-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.breakdown-wrapper-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.breakdown-text-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.breakdown-subsection-estructura-estado-resultados {
  margin-bottom: 2rem;
}

.subsection-title-estructura-estado-resultados {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.breakdown-paragraph-estructura-estado-resultados {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.breakdown-image-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-image-estructura-estado-resultados img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practical-section-estructura-estado-resultados {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.practical-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.practical-wrapper-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-estructura-estado-resultados img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practical-text-estructura-estado-resultados {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.practical-paragraph-estructura-estado-resultados {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.example-box-estructura-estado-resultados {
  background: #ffffff;
  border: 2px solid #d4662b;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.75rem 0;
}

.example-label-estructura-estado-resultados {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.example-list-estructura-estado-resultados {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-item-estructura-estado-resultados {
  color: #475569;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
}

.example-item-estructura-estado-resultados:last-child {
  border-bottom: none;
  color: #0f172a;
  font-weight: 600;
  padding-top: 0.75rem;
  padding-bottom: 0;
}

.importance-section-estructura-estado-resultados {
  background: #0a0f1e;
  color: #ffffff;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.importance-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.importance-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.importance-cards-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.importance-card-estructura-estado-resultados {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.importance-card-estructura-estado-resultados:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon-estructura-estado-resultados {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title-estructura-estado-resultados {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text-estructura-estado-resultados {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-estructura-estado-resultados {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.conclusion-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.conclusion-content-estructura-estado-resultados {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.conclusion-paragraph-estructura-estado-resultados {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-quote-estructura-estado-resultados {
  background: #f0f9ff;
  border-left: 4px solid #d4662b;
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.quote-text-estructura-estado-resultados {
  color: #0f172a;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-estructura-estado-resultados {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.disclaimer-section-estructura-estado-resultados {
  background: #f8fafc;
  color: #0f172a;
  padding: 3rem var(--space-lg);
  overflow: hidden;
}

.disclaimer-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.disclaimer-content-estructura-estado-resultados {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.disclaimer-title-estructura-estado-resultados {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-estructura-estado-resultados {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.related-section-estructura-estado-resultados {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem var(--space-lg);
  overflow: hidden;
}

.related-section-estructura-estado-resultados .container {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.related-title-estructura-estado-resultados {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.related-cards-estructura-estado-resultados {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-estructura-estado-resultados {
  flex: 1 1 calc(33.333% - 1.35rem);
  max-width: calc(33.333% - 1.35rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.related-card-estructura-estado-resultados:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-image-wrapper-estructura-estado-resultados {
  overflow: hidden;
  height: 200px;
  background: #f0f9ff;
}

.related-card-image-estructura-estado-resultados {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-estructura-estado-resultados:hover .related-card-image-estructura-estado-resultados {
  transform: scale(1.05);
}

.related-card-content-estructura-estado-resultados {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-estructura-estado-resultados {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-estructura-estado-resultados {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .intro-wrapper-estructura-estado-resultados,
  .breakdown-wrapper-estructura-estado-resultados,
  .practical-wrapper-estructura-estado-resultados {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-estructura-estado-resultados,
  .intro-image-estructura-estado-resultados,
  .breakdown-text-estructura-estado-resultados,
  .breakdown-image-estructura-estado-resultados,
  .practical-image-estructura-estado-resultados,
  .practical-text-estructura-estado-resultados {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .importance-card-estructura-estado-resultados {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .related-card-estructura-estado-resultados {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .hero-section-estructura-estado-resultados {
    padding: 2rem 1rem 3rem;
  }

  .intro-section-estructura-estado-resultados,
  .structure-section-estructura-estado-resultados,
  .breakdown-section-estructura-estado-resultados,
  .practical-section-estructura-estado-resultados,
  .importance-section-estructura-estado-resultados,
  .conclusion-section-estructura-estado-resultados,
  .disclaimer-section-estructura-estado-resultados,
  .related-section-estructura-estado-resultados {
    padding: 2.5rem 1rem;
  }

  .hero-section-estructura-estado-resultados .container,
  .intro-section-estructura-estado-resultados .container,
  .structure-section-estructura-estado-resultados .container,
  .breakdown-section-estructura-estado-resultados .container,
  .practical-section-estructura-estado-resultados .container,
  .importance-section-estructura-estado-resultados .container,
  .conclusion-section-estructura-estado-resultados .container,
  .disclaimer-section-estructura-estado-resultados .container,
  .related-section-estructura-estado-resultados .container {
    padding: 0 1rem;
  }

  .step-item-estructura-estado-resultados {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .importance-card-estructura-estado-resultados,
  .related-card-estructura-estado-resultados {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-estructura-estado-resultados {
    font-size: 0.8rem;
  }

  .example-box-estructura-estado-resultados {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section-estructura-estado-resultados {
    padding: 1.5rem 0.75rem 2rem;
  }

  .hero-title-estructura-estado-resultados {
    font-size: 1.5rem;
  }

  .hero-subtitle-estructura-estado-resultados {
    font-size: 0.95rem;
  }

  .structure-title-estructura-estado-resultados,
  .breakdown-title-estructura-estado-resultados,
  .practical-title-estructura-estado-resultados,
  .conclusion-title-estructura-estado-resultados,
  .related-title-estructura-estado-resultados {
    font-size: 1.4rem;
  }

  .step-number-estructura-estado-resultados {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .intro-section-estructura-estado-resultados,
  .structure-section-estructura-estado-resultados,
  .breakdown-section-estructura-estado-resultados,
  .practical-section-estructura-estado-resultados,
  .importance-section-estructura-estado-resultados,
  .conclusion-section-estructura-estado-resultados,
  .disclaimer-section-estructura-estado-resultados,
  .related-section-estructura-estado-resultados {
    padding: 1.5rem 0.75rem;
  }

  .disclaimer-content-estructura-estado-resultados {
    padding: 1.25rem;
  }

  .conclusion-quote-estructura-estado-resultados {
    padding: 1.25rem;
  }

  .quote-text-estructura-estado-resultados {
    font-size: 0.95rem;
  }
}

.main-clasificacion-gastos-ingresos {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-clasificacion-gastos-ingresos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-clasificacion-gastos-ingresos a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-clasificacion-gastos-ingresos a:hover {
  color: #d4662b;
}

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

.hero-section-clasificacion-gastos-ingresos {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-clasificacion-gastos-ingresos::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 102, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-clasificacion-gastos-ingresos {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-clasificacion-gastos-ingresos {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #94a3b8;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-meta-clasificacion-gastos-ingresos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.meta-item-clasificacion-gastos-ingresos {
  color: #cbd5e1;
}

.meta-separator-clasificacion-gastos-ingresos {
  color: #64748b;
}

.hero-image-wrapper-clasificacion-gastos-ingresos {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image-clasificacion-gastos-ingresos {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

.intro-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-highlight-clasificacion-gastos-ingresos {
  background: #f8fafc;
  padding: 1.5rem;
  border-left: 4px solid #d4662b;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-text-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.content-image-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-clasificacion-gastos-ingresos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.content-text-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-h2-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-p-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.content-wrapper-alt-clasificacion-gastos-ingresos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.content-text-alt-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-h2-alt-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-p-alt-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expense-categories-clasificacion-gastos-ingresos {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card-clasificacion-gastos-ingresos {
  flex: 1;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.category-title-clasificacion-gastos-ingresos {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.category-list-clasificacion-gastos-ingresos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-clasificacion-gastos-ingresos {
  font-size: 0.95rem;
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.list-item-clasificacion-gastos-ingresos::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4662b;
  font-weight: bold;
}

.content-image-alt-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-alt-clasificacion-gastos-ingresos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.strategy-content-clasificacion-gastos-ingresos {
  max-width: 1000px;
  margin: 0 auto;
}

.strategy-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-intro-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #94a3b8;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.steps-container-clasificacion-gastos-ingresos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item-clasificacion-gastos-ingresos {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-clasificacion-gastos-ingresos {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #d4662b;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-body-clasificacion-gastos-ingresos {
  flex: 1;
}

.step-title-clasificacion-gastos-ingresos {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-text-clasificacion-gastos-ingresos {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

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

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

.example-text-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.example-paragraph-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.example-image-clasificacion-gastos-ingresos {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-img-clasificacion-gastos-ingresos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.conclusion-content-clasificacion-gastos-ingresos {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-clasificacion-gastos-ingresos {
  text-align: center;
  margin-top: 2rem;
}

.cta-link-clasificacion-gastos-ingresos {
  display: inline-block;
  padding: 1rem 2rem;
  background: #d4662b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-link-clasificacion-gastos-ingresos:hover {
  background: #e87d3f;
  transform: translateY(-2px);
}

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

.disclaimer-content-clasificacion-gastos-ingresos {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(212, 102, 43, 0.08);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #d4662b;
}

.disclaimer-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-clasificacion-gastos-ingresos {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-clasificacion-gastos-ingresos {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-clasificacion-gastos-ingresos {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.related-card-clasificacion-gastos-ingresos {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.related-card-clasificacion-gastos-ingresos:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.related-card-image-clasificacion-gastos-ingresos {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-content-clasificacion-gastos-ingresos {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-clasificacion-gastos-ingresos {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-clasificacion-gastos-ingresos {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px) {
  .intro-content-clasificacion-gastos-ingresos,
  .content-wrapper-clasificacion-gastos-ingresos,
  .content-wrapper-alt-clasificacion-gastos-ingresos,
  .example-wrapper-clasificacion-gastos-ingresos {
    flex-direction: column;
  }

  .intro-text-clasificacion-gastos-ingresos,
  .intro-image-clasificacion-gastos-ingresos,
  .content-text-clasificacion-gastos-ingresos,
  .content-image-clasificacion-gastos-ingresos,
  .content-text-alt-clasificacion-gastos-ingresos,
  .content-image-alt-clasificacion-gastos-ingresos,
  .example-text-clasificacion-gastos-ingresos,
  .example-image-clasificacion-gastos-ingresos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .expense-categories-clasificacion-gastos-ingresos {
    flex-direction: column;
  }

  .related-card-clasificacion-gastos-ingresos {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .breadcrumbs-clasificacion-gastos-ingresos {
    font-size: 0.8rem;
  }

  .hero-section-clasificacion-gastos-ingresos {
    padding: 2rem 0;
  }

  .hero-title-clasificacion-gastos-ingresos {
    font-size: 1.75rem;
  }

  .hero-subtitle-clasificacion-gastos-ingresos {
    font-size: 1rem;
  }

  .hero-meta-clasificacion-gastos-ingresos {
    font-size: 0.8rem;
  }

  .hero-image-wrapper-clasificacion-gastos-ingresos {
    max-height: 300px;
  }

  .intro-section-clasificacion-gastos-ingresos,
  .content-first-clasificacion-gastos-ingresos,
  .content-second-clasificacion-gastos-ingresos,
  .strategy-section-clasificacion-gastos-ingresos,
  .example-section-clasificacion-gastos-ingresos,
  .conclusion-section-clasificacion-gastos-ingresos,
  .disclaimer-section-clasificacion-gastos-ingresos,
  .related-section-clasificacion-gastos-ingresos {
    padding: 2rem 0;
  }

  .intro-title-clasificacion-gastos-ingresos,
  .content-h2-clasificacion-gastos-ingresos,
  .content-h2-alt-clasificacion-gastos-ingresos,
  .strategy-title-clasificacion-gastos-ingresos,
  .example-title-clasificacion-gastos-ingresos,
  .conclusion-title-clasificacion-gastos-ingresos,
  .related-title-clasificacion-gastos-ingresos {
    font-size: 1.5rem;
  }

  .intro-paragraph-clasificacion-gastos-ingresos,
  .content-p-clasificacion-gastos-ingresos,
  .content-p-alt-clasificacion-gastos-ingresos,
  .strategy-intro-clasificacion-gastos-ingresos,
  .example-paragraph-clasificacion-gastos-ingresos,
  .conclusion-text-clasificacion-gastos-ingresos {
    font-size: 0.95rem;
  }

  .step-item-clasificacion-gastos-ingresos {
    gap: 1.5rem;
  }

  .step-number-clasificacion-gastos-ingresos {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .related-card-clasificacion-gastos-ingresos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-image-clasificacion-gastos-ingresos {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-clasificacion-gastos-ingresos {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .hero-title-clasificacion-gastos-ingresos {
    font-size: 1.5rem;
  }

  .hero-subtitle-clasificacion-gastos-ingresos {
    font-size: 0.95rem;
  }

  .intro-title-clasificacion-gastos-ingresos,
  .content-h2-clasificacion-gastos-ingresos,
  .content-h2-alt-clasificacion-gastos-ingresos,
  .strategy-title-clasificacion-gastos-ingresos,
  .example-title-clasificacion-gastos-ingresos,
  .conclusion-title-clasificacion-gastos-ingresos,
  .related-title-clasificacion-gastos-ingresos {
    font-size: 1.3rem;
  }

  .intro-paragraph-clasificacion-gastos-ingresos,
  .content-p-clasificacion-gastos-ingresos,
  .content-p-alt-clasificacion-gastos-ingresos,
  .example-paragraph-clasificacion-gastos-ingresos,
  .conclusion-text-clasificacion-gastos-ingresos {
    font-size: 0.9rem;
  }

  .step-item-clasificacion-gastos-ingresos {
    gap: 1rem;
  }

  .step-number-clasificacion-gastos-ingresos {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .step-title-clasificacion-gastos-ingresos {
    font-size: 1.05rem;
  }

  .step-text-clasificacion-gastos-ingresos {
    font-size: 0.85rem;
  }

  .category-card-clasificacion-gastos-ingresos {
    padding: 1rem;
  }

  .category-title-clasificacion-gastos-ingresos {
    font-size: 1rem;
  }

  .list-item-clasificacion-gastos-ingresos {
    font-size: 0.85rem;
  }

  .cta-link-clasificacion-gastos-ingresos {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .disclaimer-content-clasificacion-gastos-ingresos {
    padding: 1.5rem;
  }

  .disclaimer-title-clasificacion-gastos-ingresos {
    font-size: 1.2rem;
  }

  .disclaimer-text-clasificacion-gastos-ingresos {
    font-size: 0.85rem;
  }
}

.main-obligaciones-fiscales-españa {
  width: 100%;
  overflow: hidden;
}

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

.hero-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-obligaciones-fiscales-españa {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-obligaciones-fiscales-españa {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-meta-obligaciones-fiscales-españa {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.meta-item-obligaciones-fiscales-españa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.meta-item-obligaciones-fiscales-españa i {
  color: #d4662b;
  font-size: 1.1rem;
}

.hero-image-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-obligaciones-fiscales-españa {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-obligaciones-fiscales-españa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs-obligaciones-fiscales-españa a {
  color: #d4662b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-obligaciones-fiscales-españa a:hover {
  color: #e87d3f;
}

.breadcrumbs-obligaciones-fiscales-españa span {
  color: #64748b;
}

.intro-section-obligaciones-fiscales-españa {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-obligaciones-fiscales-españa {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-obligaciones-fiscales-españa {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.requirements-section-obligaciones-fiscales-españa {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.requirements-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.requirements-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.requirements-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.requirements-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.requirements-text-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-paragraph-obligaciones-fiscales-españa {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.requirement-items-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.requirement-item-obligaciones-fiscales-españa {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.requirement-number-obligaciones-fiscales-españa {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #d4662b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.requirement-item-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.requirement-item-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.requirements-image-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-img-obligaciones-fiscales-españa {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.documents-section-obligaciones-fiscales-españa {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documents-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.documents-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.documents-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.documents-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.documents-image-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-img-obligaciones-fiscales-españa {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.documents-text-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-paragraph-obligaciones-fiscales-españa {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.document-list-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.document-item-obligaciones-fiscales-españa {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #d4662b;
}

.document-item-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.document-item-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-section-obligaciones-fiscales-españa {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.timeline-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.timeline-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.timeline-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.timeline-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.timeline-text-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.timeline-paragraph-obligaciones-fiscales-españa {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.timeline-steps-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step-obligaciones-fiscales-españa {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-obligaciones-fiscales-españa {
  flex-shrink: 0;
  background: #d4662b;
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  min-width: 70px;
}

.step-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-image-obligaciones-fiscales-españa {
  flex: 1 1 50%;
  max-width: 50%;
}

.timeline-img-obligaciones-fiscales-españa {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.formats-section-obligaciones-fiscales-españa {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.formats-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.formats-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.formats-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.formats-wrapper-obligaciones-fiscales-españa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
}

.format-card-obligaciones-fiscales-españa {
  flex: 1 1 100%;
  max-width: 500px;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.format-card-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.format-card-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.format-list-obligaciones-fiscales-españa {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.format-list-item-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}

.format-list-item-obligaciones-fiscales-españa::before {
  content: '';
  flex-shrink: 0;
  color: #d4662b;
  font-weight: 700;
  margin-top: 2px;
}

.tips-section-obligaciones-fiscales-españa {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.tips-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tips-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.tips-grid-obligaciones-fiscales-españa {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-obligaciones-fiscales-españa {
  flex: 1 1 100%;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tip-card-obligaciones-fiscales-españa:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tip-card-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.tip-card-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.conclusion-section-obligaciones-fiscales-españa {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-obligaciones-fiscales-españa {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-obligaciones-fiscales-españa {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #d4662b;
}

.cta-text-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-obligaciones-fiscales-españa {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-obligaciones-fiscales-españa {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 102, 43, 0.2);
}

.disclaimer-title-obligaciones-fiscales-españa {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-obligaciones-fiscales-españa {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-obligaciones-fiscales-españa {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-obligaciones-fiscales-españa {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.related-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-obligaciones-fiscales-españa {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0;
}

.related-cards-obligaciones-fiscales-españa {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-obligaciones-fiscales-españa {
  flex: 1 1 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-obligaciones-fiscales-españa:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-obligaciones-fiscales-españa {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-obligaciones-fiscales-españa {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-obligaciones-fiscales-españa {
  padding: 1.5rem;
}

.related-card-title-obligaciones-fiscales-españa {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.related-card-text-obligaciones-fiscales-españa {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-obligaciones-fiscales-españa {
  color: #d4662b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-card-link-obligaciones-fiscales-españa:hover {
  color: #e87d3f;
}

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

@media (max-width: 1024px) {
  .hero-wrapper-obligaciones-fiscales-españa,
  .intro-wrapper-obligaciones-fiscales-españa,
  .requirements-wrapper-obligaciones-fiscales-españa,
  .documents-wrapper-obligaciones-fiscales-españa,
  .timeline-wrapper-obligaciones-fiscales-españa {
    flex-direction: column;
  }

  .hero-content-obligaciones-fiscales-españa,
  .hero-image-obligaciones-fiscales-españa,
  .intro-text-obligaciones-fiscales-españa,
  .intro-image-obligaciones-fiscales-españa,
  .requirements-text-obligaciones-fiscales-españa,
  .requirements-image-obligaciones-fiscales-españa,
  .documents-image-obligaciones-fiscales-españa,
  .documents-text-obligaciones-fiscales-españa,
  .timeline-text-obligaciones-fiscales-españa,
  .timeline-image-obligaciones-fiscales-españa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-obligaciones-fiscales-españa,
  .intro-section-obligaciones-fiscales-españa,
  .requirements-section-obligaciones-fiscales-españa,
  .documents-section-obligaciones-fiscales-españa,
  .timeline-section-obligaciones-fiscales-españa,
  .formats-section-obligaciones-fiscales-españa,
  .tips-section-obligaciones-fiscales-españa,
  .conclusion-section-obligaciones-fiscales-españa,
  .disclaimer-section-obligaciones-fiscales-españa,
  .related-section-obligaciones-fiscales-españa {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-obligaciones-fiscales-españa {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .hero-title-obligaciones-fiscales-españa {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle-obligaciones-fiscales-españa {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-meta-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .meta-item-obligaciones-fiscales-españa {
    font-size: 0.85rem;
  }

  .intro-title-obligaciones-fiscales-españa,
  .requirements-title-obligaciones-fiscales-españa,
  .documents-title-obligaciones-fiscales-españa,
  .timeline-title-obligaciones-fiscales-españa,
  .formats-title-obligaciones-fiscales-españa,
  .tips-title-obligaciones-fiscales-españa,
  .conclusion-title-obligaciones-fiscales-españa {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .intro-paragraph-obligaciones-fiscales-españa,
  .requirements-paragraph-obligaciones-fiscales-españa,
  .documents-paragraph-obligaciones-fiscales-españa,
  .timeline-paragraph-obligaciones-fiscales-españa,
  .format-card-text-obligaciones-fiscales-españa,
  .tip-card-text-obligaciones-fiscales-españa,
  .conclusion-text-obligaciones-fiscales-españa,
  .disclaimer-text-obligaciones-fiscales-españa {
    font-size: 0.95rem;
  }

  .format-card-obligaciones-fiscales-españa {
    max-width: 100%;
  }

  .tip-card-obligaciones-fiscales-españa {
    max-width: 100%;
  }

  .related-card-obligaciones-fiscales-españa {
    max-width: 100%;
  }

  .timeline-steps-obligaciones-fiscales-españa {
    gap: 1.2rem;
  }

  .timeline-step-obligaciones-fiscales-españa {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section-obligaciones-fiscales-españa,
  .intro-section-obligaciones-fiscales-españa,
  .requirements-section-obligaciones-fiscales-españa,
  .documents-section-obligaciones-fiscales-españa,
  .timeline-section-obligaciones-fiscales-españa,
  .formats-section-obligaciones-fiscales-españa,
  .tips-section-obligaciones-fiscales-españa,
  .conclusion-section-obligaciones-fiscales-españa,
  .disclaimer-section-obligaciones-fiscales-españa,
  .related-section-obligaciones-fiscales-españa {
    padding: 1.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title-obligaciones-fiscales-españa {
    font-size: 1.5rem;
  }

  .hero-subtitle-obligaciones-fiscales-españa {
    font-size: 0.95rem;
  }

  .breadcrumbs-obligaciones-fiscales-españa {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .hero-meta-obligaciones-fiscales-españa {
    flex-direction: column;
    gap: 0.8rem;
  }

  .intro-title-obligaciones-fiscales-españa,
  .requirements-title-obligaciones-fiscales-españa,
  .documents-title-obligaciones-fiscales-españa,
  .timeline-title-obligaciones-fiscales-españa,
  .formats-title-obligaciones-fiscales-españa,
  .tips-title-obligaciones-fiscales-españa,
  .conclusion-title-obligaciones-fiscales-españa {
    font-size: 1.3rem;
  }

  .requirement-items-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .requirement-item-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .requirement-number-obligaciones-fiscales-españa {
    min-width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .document-item-obligaciones-fiscales-españa {
    padding: 1rem;
  }

  .timeline-steps-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .step-number-obligaciones-fiscales-españa {
    min-width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .formats-wrapper-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .tips-grid-obligaciones-fiscales-españa {
    gap: 1rem;
  }

  .tip-card-obligaciones-fiscales-españa {
    max-width: 100%;
    padding: 1rem;
  }

  .disclaimer-content-obligaciones-fiscales-españa {
    padding: 1.5rem;
  }

  .conclusion-cta-obligaciones-fiscales-españa {
    padding: 1.5rem;
  }
}

.main-herramientas-software-contables {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-herramientas-software-contables {
  background: #0a0f1e;
  color: #ffffff;
  padding: 3rem 0 4rem;
  overflow: hidden;
  position: relative;
}

.hero-section-herramientas-software-contables::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 102, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-herramientas-software-contables .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs-herramientas-software-contables {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-herramientas-software-contables a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumbs-herramientas-software-contables a:hover {
  color: #d4662b;
}

.breadcrumbs-herramientas-software-contables span {
  color: #64748b;
}

.hero-content-herramientas-software-contables {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.hero-title-herramientas-software-contables {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-meta-herramientas-software-contables {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.meta-item-herramientas-software-contables {
  color: #94a3b8;
  font-size: 0.9rem;
}

.meta-divider-herramientas-software-contables {
  color: #64748b;
}

.hero-stats-herramientas-software-contables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card-herramientas-software-contables {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number-herramientas-software-contables {
  color: #d4662b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.stat-label-herramientas-software-contables {
  color: #94a3b8;
  font-size: 0.875rem;
  text-align: center;
}

.hero-image-wrapper-herramientas-software-contables {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.intro-section-herramientas-software-contables {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 0;
  overflow: hidden;
}

.intro-wrapper-herramientas-software-contables {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.intro-text-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-herramientas-software-contables {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.intro-paragraph-herramientas-software-contables {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-features-herramientas-software-contables {
  list-style: none;
  margin-top: 2rem;
}

.intro-feature-item-herramientas-software-contables {
  color: #0f172a;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 500;
}

.intro-feature-item-herramientas-software-contables::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4662b;
  font-weight: 800;
}

.intro-image-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.tools-section-herramientas-software-contables {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem 0;
  overflow: hidden;
}

.tools-header-herramientas-software-contables {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tools-title-herramientas-software-contables {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.tools-description-herramientas-software-contables {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.tools-grid-herramientas-software-contables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tool-card-herramientas-software-contables {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tool-card-herramientas-software-contables:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.tool-icon-herramientas-software-contables {
  width: 50px;
  height: 50px;
  background: #f5e6dc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #d4662b;
  margin-bottom: 1rem;
}

.tool-name-herramientas-software-contables {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.tool-text-herramientas-software-contables {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-features-herramientas-software-contables {
  list-style: none;
  margin-top: auto;
}

.tool-feature-herramientas-software-contables {
  color: #64748b;
  font-size: 0.85rem;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.tool-feature-herramientas-software-contables::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4662b;
  font-weight: 800;
}

.tools-image-herramientas-software-contables {
  margin-top: 2rem;
}

.tools-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.premium-section-herramientas-software-contables {
  background: #0f172a;
  color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.premium-wrapper-herramientas-software-contables {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.premium-image-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.premium-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.premium-text-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.premium-title-herramientas-software-contables {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.premium-paragraph-herramientas-software-contables {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.premium-features-herramientas-software-contables {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.premium-feature-herramientas-software-contables {
  display: flex;
  gap: 1.5rem;
}

.premium-feature-number-herramientas-software-contables {
  color: #d4662b;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.premium-feature-content-herramientas-software-contables {
  flex: 1;
}

.premium-feature-title-herramientas-software-contables {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.premium-feature-text-herramientas-software-contables {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.premium-quote-herramientas-software-contables {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #d4662b;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.premium-quote-text-herramientas-software-contables {
  color: #ffffff;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.premium-quote-author-herramientas-software-contables {
  color: #94a3b8;
  font-style: normal;
  font-size: 0.9rem;
}

.comparison-section-herramientas-software-contables {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 0;
  overflow: hidden;
}

.comparison-header-herramientas-software-contables {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-title-herramientas-software-contables {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.comparison-description-herramientas-software-contables {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.comparison-table-wrapper-herramientas-software-contables {
  margin-bottom: 3rem;
  overflow-x: auto;
}

.comparison-table-herramientas-software-contables {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.comparison-thead-herramientas-software-contables {
  background: #f8fafc;
}

.comparison-row-herramientas-software-contables {
  border-bottom: 1px solid #e2e8f0;
}

.comparison-row-herramientas-software-contables:last-child {
  border-bottom: none;
}

.comparison-cell-header-herramientas-software-contables {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  border-right: 1px solid #e2e8f0;
}

.comparison-cell-header-herramientas-software-contables:last-child {
  border-right: none;
}

.comparison-cell-herramientas-software-contables {
  padding: 1rem;
  text-align: left;
  color: #475569;
  font-size: 0.95rem;
  border-right: 1px solid #e2e8f0;
}

.comparison-cell-herramientas-software-contables:last-child {
  border-right: none;
}

.comparison-image-herramientas-software-contables {
  margin-top: 2rem;
}

.comparison-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.criteria-section-herramientas-software-contables {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem 0;
  overflow: hidden;
}

.criteria-header-herramientas-software-contables {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.criteria-title-herramientas-software-contables {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.criteria-description-herramientas-software-contables {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.criteria-grid-herramientas-software-contables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.criteria-card-herramientas-software-contables {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.criteria-card-herramientas-software-contables:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.criteria-icon-herramientas-software-contables {
  width: 60px;
  height: 60px;
  background: #f5e6dc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #d4662b;
  margin: 0 auto 1rem;
}

.criteria-name-herramientas-software-contables {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.criteria-text-herramientas-software-contables {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.criteria-image-herramientas-software-contables {
  margin-top: 2rem;
}

.criteria-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.conclusion-section-herramientas-software-contables {
  background: #0a0f1e;
  color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.conclusion-content-herramientas-software-contables {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
  flex-direction: column;
}

.conclusion-title-herramientas-software-contables {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.conclusion-text-herramientas-software-contables {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-steps-herramientas-software-contables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-step-herramientas-software-contables {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #d4662b;
}

.step-num-herramientas-software-contables {
  color: #d4662b;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-title-herramientas-software-contables {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-text-herramientas-software-contables {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.conclusion-final-herramientas-software-contables {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-cta-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.cta-button-herramientas-software-contables {
  display: inline-block;
  padding: 1rem 2rem;
  background: #d4662b;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-button-herramientas-software-contables:hover {
  background: #e87d3f;
  transform: translateY(-2px);
}

.conclusion-image-herramientas-software-contables {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-img-herramientas-software-contables {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.disclaimer-section-herramientas-software-contables {
  background: #f8fafc;
  color: #0f172a;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-herramientas-software-contables {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #d4662b;
}

.disclaimer-title-herramientas-software-contables {
  color: #0f172a;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.disclaimer-text-herramientas-software-contables {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-text-herramientas-software-contables:last-child {
  margin-bottom: 0;
}

.related-section-herramientas-software-contables {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 0;
  overflow: hidden;
}

.related-header-herramientas-software-contables {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-herramientas-software-contables {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.related-description-herramientas-software-contables {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.related-cards-herramientas-software-contables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card-herramientas-software-contables {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-herramientas-software-contables:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-image-herramientas-software-contables {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-herramientas-software-contables img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-herramientas-software-contables:hover .related-image-herramientas-software-contables img {
  transform: scale(1.05);
}

.related-card-title-herramientas-software-contables {
  color: #0f172a;
  font-size: 1.1rem;
  padding: 1.5rem 1.5rem 0.75rem;
  margin: 0;
}

.related-card-text-herramientas-software-contables {
  color: #475569;
  font-size: 0.9rem;
  padding: 0 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-herramientas-software-contables {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: #d4662b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-card-link-herramientas-software-contables:hover {
  color: #e87d3f;
}

@media (max-width: 768px) {
  .hero-section-herramientas-software-contables {
    padding: 2rem 0 3rem;
  }

  .hero-stats-herramientas-software-contables {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-image-wrapper-herramientas-software-contables {
    margin-top: 2rem;
  }

  .intro-wrapper-herramientas-software-contables,
  .premium-wrapper-herramientas-software-contables,
  .conclusion-content-herramientas-software-contables {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-herramientas-software-contables,
  .intro-image-herramientas-software-contables,
  .premium-image-herramientas-software-contables,
  .premium-text-herramientas-software-contables,
  .conclusion-steps-herramientas-software-contables,
  .conclusion-final-herramientas-software-contables,
  .conclusion-cta-herramientas-software-contables,
  .conclusion-image-herramientas-software-contables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-section-herramientas-software-contables,
  .intro-section-herramientas-software-contables,
  .premium-section-herramientas-software-contables,
  .comparison-section-herramientas-software-contables,
  .criteria-section-herramientas-software-contables,
  .conclusion-section-herramientas-software-contables,
  .related-section-herramientas-software-contables {
    padding: 3rem 0;
  }

  .tools-grid-herramientas-software-contables,
  .criteria-grid-herramientas-software-contables {
    grid-template-columns: 1fr;
  }

  .related-cards-herramientas-software-contables {
    grid-template-columns: 1fr;
  }

  .comparison-table-herramientas-software-contables {
    font-size: 0.85rem;
  }

  .comparison-cell-header-herramientas-software-contables,
  .comparison-cell-herramientas-software-contables {
    padding: 0.75rem;
  }

  .hero-title-herramientas-software-contables {
    font-size: 1.75rem;
  }

  .intro-title-herramientas-software-contables,
  .premium-title-herramientas-software-contables,
  .conclusion-title-herramientas-software-contables,
  .tools-title-herramientas-software-contables,
  .comparison-title-herramientas-software-contables,
  .criteria-title-herramientas-software-contables,
  .related-title-herramientas-software-contables {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-herramientas-software-contables {
    font-size: 0.75rem;
  }

  .hero-section-herramientas-software-contables {
    padding: 1.5rem 0 2rem;
  }

  .hero-stats-herramientas-software-contables {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-title-herramientas-software-contables {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle-herramientas-software-contables {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .intro-section-herramientas-software-contables,
  .tools-section-herramientas-software-contables,
  .premium-section-herramientas-software-contables,
  .comparison-section-herramientas-software-contables,
  .criteria-section-herramientas-software-contables,
  .conclusion-section-herramientas-software-contables,
  .related-section-herramientas-software-contables {
    padding: 2rem 0;
  }

  .premium-features-herramientas-software-contables {
    gap: 1.5rem;
  }

  .premium-feature-number-herramientas-software-contables {
    font-size: 1.5rem;
    width: 40px;
  }

  .conclusion-steps-herramientas-software-contables {
    grid-template-columns: 1fr;
  }

  .intro-title-herramientas-software-contables,
  .premium-title-herramientas-software-contables,
  .conclusion-title-herramientas-software-contables,
  .tools-title-herramientas-software-contables,
  .comparison-title-herramientas-software-contables,
  .criteria-title-herramientas-software-contables,
  .related-title-herramientas-software-contables {
    font-size: 1.35rem;
  }

  .tool-card-herramientas-software-contables {
    padding: 1.5rem;
  }

  .criteria-icon-herramientas-software-contables {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #94a3b8;
  --color-text-muted-dark: #64748b;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #9ca3af;
  --color-primary: #d4662b;
  --color-primary-hover: #e87d3f;
  --color-primary-light: #f5e6dc;
  --color-secondary: #2c5f8d;
  --color-secondary-hover: #1e4a6a;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}

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

html, body, 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;
}

.financial-excellence-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
}

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

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

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-top: 2rem;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.origin-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.origin-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

.origin-body-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 850px;
  margin: 2rem auto 0;
}

.origin-paragraph-about {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

.expertise-section-about {
  background: var(--color-bg-dark-accent);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.services-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 1rem;
}

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

.service-card-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 102, 43, 0.3);
}

.service-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.service-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
}

.service-text-about {
  font-size: 0.95rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

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

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

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

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

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

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

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 70px;
}

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

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
}

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

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

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

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

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
}

.commitment-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 1.5rem;
}

.value-card-about {
  flex: 1 1 clamp(250px, 40vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-icon-about {
  font-size: 2.25rem;
  color: var(--color-primary);
}

.value-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
}

.value-text-about {
  font-size: 0.9rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.featured-quote-about {
  background: rgba(212, 102, 43, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px;
  border-radius: 4px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: 0.95rem;
  color: var(--color-text-secondary-dark);
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.2vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 2rem;
  }

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

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

  .service-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .process-step-about {
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 102, 43, 0.2);
  }

  .process-step-about:hover {
    border-left-color: var(--color-primary);
  }
}

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

.services-hero {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  overflow: hidden;
}

.services-hero-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary-dark);
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
}

.services-hero-image {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-xl) var(--space-lg);
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-hero-title {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 3.5rem);
  }

  .services-hero-image {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-3xl);
  }
}

.services-content {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .services-content {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.services-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.services-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(212, 102, 43, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 102, 43, 0.15);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 600;
  line-height: 1.3;
}

.services-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  flex-grow: 1;
}

.services-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services-card-features li {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.services-card-features i {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.services-cta {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-dark-accent);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  max-width: 300px;
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md) var(--space-lg);
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 102, 43, 0.1);
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(212, 102, 43, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 102, 43, 0.25);
}

.faq-item__trigger {
  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);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  text-align: left;
}

.faq-item__trigger:hover {
  background-color: rgba(212, 102, 43, 0.05);
}

.faq-item__question {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-primary-dark);
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid rgba(212, 102, 43, 0.1);
}

.faq-item__answer.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

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

.faq-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(212, 102, 43, 0.1);
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.faq-cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  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, 1.5vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 4rem var(--space-lg) var(--space-xl);
  }

  .faq-content {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

  .faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 5rem var(--space-lg) var(--space-2xl);
  }

  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-item__question {
    font-size: 1.125rem;
  }

  .faq-item__answer p {
    font-size: 1rem;
  }
}

.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 .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.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);
  font-weight: 700;
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted-light);
  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);
  font-weight: 700;
}

.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 {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.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 .contact-section {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
}

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

.legal-docs .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) 0;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #94a3b8;
  --color-text-muted-dark: #64748b;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #9ca3af;
  --color-primary: #d4662b;
  --color-primary-hover: #e87d3f;
  --color-primary-light: #f5e6dc;
  --color-secondary: #2c5f8d;
  --color-secondary-hover: #1e4a6a;
  --color-accent-gold: #c9a961;
  --color-accent-red: #c41e3a;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --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);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
}

.thank-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  margin: 0 auto;
  flex-shrink: 0;
}

.thank-icon svg {
  width: 55%;
  height: 55%;
  color: var(--color-primary);
  stroke-width: 1.5;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.4;
}

.thank-content-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.thank-content-text p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  text-align: center;
}

.thank-content-text p:first-child {
  margin-top: var(--space-sm);
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1vw + 0.5rem, 1.125rem) clamp(2rem, 4vw, 3rem);
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
  border: 2px solid var(--color-primary);
  font-family: var(--font-primary);
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-return:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-light), var(--shadow-lg);
}

@media (min-width: 480px) {
  .thank-section {
    padding: var(--space-xl) var(--space-md);
  }

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

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

  .thank-content-text p {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
  }

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

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

  .thank-icon {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
  }

  .thank-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }

  .thank-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
  }

  .thank-content-text {
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
  }

  .thank-content-text p {
    font-size: clamp(0.95rem, 0.8vw + 0.6rem, 1.1rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

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

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-title {
    font-size: 3.5rem;
  }

  .thank-subtitle {
    font-size: 1.5rem;
  }

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

  .thank-content-text p {
    font-size: 1.1rem;
  }

  .btn-return {
    padding: 1.125rem 3rem;
    font-size: 1.05rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  margin-bottom: var(--space-lg);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 0 10px 30px rgba(212, 102, 43, 0.2);
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, rgba(212, 102, 43, 0.1) 0%, rgba(212, 102, 43, 0.02) 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
}

.error-message {
  width: 100%;
  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);
  line-height: 1.2;
  margin: 0;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent-gold);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(212, 102, 43, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  width: 100%;
}

.suggestions-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  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);
}

.suggestion-item {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.suggestion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  margin-top: var(--space-md);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

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

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-code {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .error-decoration {
    width: clamp(300px, 60vw, 500px);
    height: clamp(300px, 60vw, 500px);
  }

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

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

  .suggestion-item {
    padding: var(--space-md) 0;
    padding-left: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-2xl);
  }

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

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

  .error-code {
    font-size: clamp(6rem, 18vw, 8rem);
  }

  .error-decoration {
    width: 500px;
    height: 500px;
  }

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

  .btn-primary {
    padding: var(--space-md) var(--space-2xl);
    margin-top: var(--space-lg);
  }
}

.contact-help-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
}

.contact-help-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-help-hero-content {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.contact-help-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.contact-help-hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-help-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-help-main-content {
  padding: 0 var(--space-sm);
}

.contact-help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-help-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-form-header {
  margin-bottom: var(--space-lg);
}

.contact-help-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-help-form-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-help-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-help-label {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
  display: block;
}

.contact-help-input,
.contact-help-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  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);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.contact-help-input:focus,
.contact-help-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 102, 43, 0.1);
}

.contact-help-input::placeholder,
.contact-help-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-help-textarea {
  min-height: 140px;
  resize: vertical;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.contact-help-error {
  font-size: 0.8rem;
  color: var(--color-accent-red);
  display: none;
}

.contact-help-error.show {
  display: block;
}

.contact-help-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-help-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-help-consent-label {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.5;
  cursor: pointer;
}

.contact-help-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.contact-help-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.contact-help-form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  text-align: center;
  margin-top: var(--space-sm);
}

.contact-help-info-header {
  margin-bottom: var(--space-lg);
}

.contact-help-info-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-help-info-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-help-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-help-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-help-info-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 102, 43, 0.3);
}

.contact-help-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(212, 102, 43, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-help-info-content {
  flex: 1;
}

.contact-help-info-label {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-xs);
}

.contact-help-info-text {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: 0.25rem;
}

.contact-help-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.contact-help-info-hours {
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  margin-top: 0.5rem;
  font-style: italic;
}

.contact-help-info-faq {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(212, 102, 43, 0.08) 0%, rgba(44, 95, 141, 0.08) 100%);
  border: 1px solid rgba(212, 102, 43, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-help-faq-title {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-help-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-help-faq-item {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  padding-left: var(--space-md);
  position: relative;
}

.contact-help-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.contact-help-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-help-cta-content {
  padding: 0 var(--space-sm);
  text-align: center;
}

.contact-help-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-help-cta-text {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-help-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .contact-help-hero {
    padding: var(--space-2xl) 0 var(--space-xl) 0;
  }

  .contact-help-main {
    padding: var(--space-3xl) 0;
  }

  .contact-help-grid {
    gap: var(--space-3xl);
    align-items: stretch;
  }

  .contact-help-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: var(--space-3xl) 0 var(--space-2xl) 0;
  }

  .contact-help-main {
    padding: var(--space-3xl) 0;
  }

  .contact-help-grid {
    gap: var(--space-2xl);
  }

  .contact-help-cta {
    padding: var(--space-3xl) 0;
  }
}