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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827 !important;
  --color-text-secondary: #4b5563 !important;
  --color-text-muted: #9ca3af;
  --color-text-light: #404143 !important;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #10b981;
  --color-secondary: #0891b2;
  --color-secondary-light: #06b6d4;
  --color-accent-gold: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

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

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

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

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

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

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

.btn-outline:hover {
  background: rgba(5, 150, 105, 0.05);
  border-color: var(--color-primary-hover);
}

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

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

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

.card-title {
  color: var(--color-text-primary) !important;
  font-weight: 600;
}

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

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

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

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

ul, ol {
  list-style: none;
}

li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--color-text-secondary);
}

li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

li i {
  color: var(--color-primary);
}

.section-padding {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.section-padding-sm {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

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

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

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

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-label {
  color: var(--color-text-primary) !important;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.form-input,
.form-textarea {
  padding: var(--space-md);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary) !important;
  background: var(--color-bg-secondary);
  transition: all 0.3s ease;
}

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

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

.form-submit-btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}

.decoration-circle {
  border-radius: 50%;
}

.decoration-blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

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

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

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

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

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

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

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

  .header-capital-hub {
    position: static;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    width: 100%;
    z-index: 100;
  }

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

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

  .header-capital-hub-brand:hover {
    opacity: 0.8;
  }

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

  .header-capital-hub-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #000 !important;
    white-space: nowrap;
  }

  .header-capital-hub-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-grow: 1;
    justify-content: center;
  }

  .header-capital-hub-nav-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
    white-space: nowrap;
  }

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

  .header-capital-hub-nav-link:hover {
    color: var(--color-primary);
  }

  .header-capital-hub-nav-link:hover::after {
    width: 100%;
  }

  .header-capital-hub-nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
  }

  .header-capital-hub-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2.5vw, 1.5rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-capital-hub-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .header-capital-hub-cta-button:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

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

  .header-capital-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 102;
    transition: opacity 300ms ease;
  }

  .header-capital-hub-mobile-toggle:hover {
    opacity: 0.7;
  }

  .header-capital-hub-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header-capital-hub-hamburger {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 1px;
    transition: all 300ms ease;
  }

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

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

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

  .header-capital-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

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

  .header-capital-hub-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 4vw, 1.5rem);
    border-bottom: 1px solid var(--color-bg-tertiary);
    flex-shrink: 0;
  }

  .header-capital-hub-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary) !important;
  }

  .header-capital-hub-mobile-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
  }

  .header-capital-hub-mobile-close:hover {
    opacity: 0.7;
  }

  .header-capital-hub-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header-capital-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    flex-grow: 1;
  }

  .header-capital-hub-mobile-link {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: all 300ms ease;
    display: block;
  }

  .header-capital-hub-mobile-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    padding-left: clamp(1.25rem, 5vw, 1.75rem);
  }

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

  .header-capital-hub-mobile-cta {
    margin: auto clamp(1rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease;
    display: block;
  }

  .header-capital-hub-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .header-capital-hub-mobile-cta:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

  .header-capital-hub-mobile-cta:focus-visible {
    outline: 2px solid var(--color-primary-hover);
    outline-offset: 2px;
  }

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

    .header-capital-hub-desktop-nav {
      display: flex;
    }

    .header-capital-hub-cta-button {
      display: inline-block;
    }

    .header-capital-hub-mobile-menu {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .header-capital-hub-container {
      padding: 1rem clamp(2rem, 5vw, 3rem);
    }

    .header-capital-hub-logo-text {
      font-size: 1.375rem;
    }

    .header-capital-hub-nav-link {
      font-size: 1rem;
    }

    .header-capital-hub-cta-button {
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 767px) {
    .header-capital-hub-container {
      gap: 1rem;
    }

    .header-capital-hub-cta-button {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-capital-hub-brand,
    .header-capital-hub-nav-link,
    .header-capital-hub-cta-button,
    .header-capital-hub-mobile-toggle,
    .header-capital-hub-hamburger,
    .header-capital-hub-mobile-menu,
    .header-capital-hub-mobile-link,
    .header-capital-hub-mobile-cta {
      transition: none !important;
      animation-duration: 0.01ms !important;
    }

    .header-capital-hub-mobile-toggle[aria-expanded="true"] .header-capital-hub-hamburger:nth-child(1),
    .header-capital-hub-mobile-toggle[aria-expanded="true"] .header-capital-hub-hamburger:nth-child(3) {
      transform: none;
    }
  }

    .trading-academy {
  width: 100%;
}

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

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

.hero-glow-primary {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-left {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-right {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 30%;
  right: 10%;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card-1 {
  position: absolute;
  width: 180px;
  height: 140px;
  top: 20%;
  left: 10%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-floating-card-2 {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: 8%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(12deg);
}

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

.hero-shape-organic {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 60%;
  left: 15%;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-trading {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

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

.hero-subtitle-trading {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 2.5rem;
}

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

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

.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

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

.btn-primary-hero:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25);
}

.btn-secondary-hero {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
}

.btn-secondary-hero:hover {
  background: rgba(5, 150, 105, 0.05);
  transform: translateY(-3px);
}

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

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

.foundation-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.foundation-shape-left {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 30%;
  left: 2%;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.foundation-shape-right {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 3%;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.foundation-accent-line {
  position: absolute;
  width: 250px;
  height: 1px;
  top: 50%;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.foundation-floating-panel {
  position: absolute;
  width: 140px;
  height: 120px;
  top: 40%;
  right: 5%;
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(15deg);
}

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

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

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

.foundation-title-trading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-subtitle-trading {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.foundation-step-trading {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.foundation-step-trading:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.foundation-step-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #059669;
  flex-shrink: 0;
  min-width: 60px;
}

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

.foundation-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

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

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

.features-glow-primary {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 10%;
  right: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-secondary {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 5%;
  left: -70px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.09) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-1 {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 20%;
  left: 8%;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-shape-2 {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 55%;
  right: 12%;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.features-shape-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 15%;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.features-accent-corner {
  position: absolute;
  width: 200px;
  height: 1px;
  bottom: 30%;
  right: 5%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.features-title-trading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-trading {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-trading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.features-card-trading {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.features-card-trading:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}

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

.features-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

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

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

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

.content-glow-right {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.content-shape-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 5%;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.content-line-divider {
  position: absolute;
  width: 1px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.content-wrapper-trading {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-block {
  flex: 1 1 350px;
}

.content-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-section-description {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.content-benefits-list {
  list-style: none;
  margin-top: 2rem;
}

.content-benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
}

.content-benefits-list li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.content-image-block {
  flex: 1 1 350px;
  min-height: 300px;
}

.content-section-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

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

.posts-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 5%;
  right: -70px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-left {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 30%;
  left: 3%;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-shape-right {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 5%;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.posts-title-trading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

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

.post-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.post-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

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

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

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

.posts-cta-section {
  text-align: center;
}

.posts-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 2.75rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-cta-button:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25);
}

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

.values-glow-top {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-bottom {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.09) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.values-shape-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.values-shape-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 30%;
  right: 8%;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.values-title-trading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-subtitle-trading {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.value-item-trading {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #111827;
}

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

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

.quote-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-shape-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.quote-content-trading {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

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

.quote-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: #111827;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

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

.contact-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -50px;
  left: 5%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-left {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 30%;
  left: 3%;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.contact-accent-line {
  position: absolute;
  width: 250px;
  height: 1px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-header-trading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.contact-tag-trading {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(34, 211, 238, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.contact-title-trading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle-trading {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.contact-form-block {
  flex: 1 1 400px;
}

.contact-form-trading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-label-trading {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #e2e8f0;
}

.form-input-trading,
.form-textarea-trading {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #ffffff;
  transition: all 300ms ease;
}

.form-input-trading::placeholder,
.form-textarea-trading::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input-trading:focus,
.form-textarea-trading:focus {
  outline: none;
  border-color: #06b6d4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

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

.form-privacy-trading {
  margin-top: 0.5rem;
}

.form-privacy-text {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #cbd5e1;
  line-height: 1.5;
}

.form-privacy-link {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms ease;
}

.form-privacy-link:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.form-submit-btn-trading {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.form-submit-btn-trading:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.form-submit-btn-trading:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.4);
}

.contact-info-block {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.info-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.info-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list li {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  padding-left: 1.5rem;
  position: relative;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  max-width: 400px;
  line-height: 1.5;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
}

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

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

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

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

@media (max-width: 768px) {
  .content-wrapper-trading {
    flex-direction: column;
  }

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

  .contact-content-wrapper {
    flex-direction: column;
  }

  .contact-form-block,
  .contact-info-block {
    flex: 1 1 100%;
  }

  .featured-posts-cards-trading {
    flex-direction: column;
  }

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

  .values-grid-trading {
    flex-direction: column;
  }

  .value-item-trading {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

    .footer {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
    color: var(--color-text-secondary);
    border-top: 1px solid #e5e7eb;
  }

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

  .footer-content {
    display: block;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .footer-about-section {
    display: block;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 500px;
  }

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

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-light);
  }

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

  .footer-navigation-section,
  .footer-contact-section,
  .footer-legal-section {
    display: block;
    flex: 1 1 200px;
  }

  .footer-section-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-primary) !important;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
  }

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

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

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

  .footer-contact-info {
    display: block;
  }

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
  }

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

  .footer-divider {
    height: 1px;
    background: #e5e7eb;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

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

  @media (max-width: 768px) {
    .footer-sections-wrapper {
      flex-direction: column;
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .footer-navigation-section,
    .footer-contact-section,
    .footer-legal-section {
      flex: 1 1 100%;
    }

    .footer-about-section {
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
  }

  @media (max-width: 480px) {
    .footer {
      padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
    }

    .footer-sections-wrapper {
      gap: clamp(1.25rem, 2vw, 1.5rem);
    }

    .footer-divider {
      margin: clamp(1rem, 2vw, 1.5rem) 0;
    }
  }
    

.category-page-trading-education {
  width: 100%;
  background: #f9fafb;
}

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

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

.hero-deco-glow-left-trading {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-right-trading {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(10, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-trading {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-trading-education {
  position: relative;
  z-index: 10;
}

.hero-text-block-trading {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-trading-education {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-trading-education {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
}

.hero-stats-trading {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  flex-wrap: wrap;
}

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

.stat-number-trading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  display: block;
  line-height: 1;
}

.stat-label-trading {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.9;
}

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

.posts-header-trading {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.posts-title-trading-education {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.posts-subtitle-trading-education {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.card-trading-education {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-trading-education:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.card-trading-education img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

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

.card-description-trading {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-trading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

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

.meta-badge-trading i {
  font-size: 0.75rem;
}

.card-link-trading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

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

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

.learning-deco-shape-trading {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.learning-deco-glow-trading {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-trading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.learning-title-trading-education {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.learning-subtitle-trading-education {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.learning-steps-trading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.learning-step-trading {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-trading:hover {
  background: #f1f5f9;
  transform: translateX(8px);
}

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

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

.learning-step-title-trading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.learning-step-text-trading {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

.resources-title-trading-education {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.resources-subtitle-trading-education {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.resource-card-trading {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.resource-card-trading:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.resource-card-title-trading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.resource-card-text-trading {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.featured-quote-section-trading-education {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.quote-deco-left-trading {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-deco-right-trading {
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-trading-education {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  border-left: 4px solid #059669;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-author-trading {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-stats-trading {
    gap: 1.5rem;
  }

  .stat-number-trading {
    font-size: 2rem;
  }

  .learning-step-trading {
    padding: 1rem;
  }

  .card-trading-education {
    flex: 1 1 100%;
    max-width: none;
  }

  .resource-card-trading {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-trading {
    gap: 1rem;
    flex-direction: column;
  }

  .learning-step-trading {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-quote-trading-education {
    padding: 1.5rem;
  }

  .quote-text-trading {
    font-size: 1rem;
  }
}

.main-risikomanagement-aktien {
  width: 100%;
}

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

.hero-section-risikomanagement-aktien {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .hero-text-block-risikomanagement-aktien {
    max-width: 100%;
  }
}

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

.breadcrumbs-risikomanagement-aktien a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-risikomanagement-aktien a:hover {
  color: #047857;
  text-decoration: underline;
}

.hero-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.hero-subtitle-risikomanagement-aktien {
  color: #475569;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.meta-badges-risikomanagement-aktien {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-risikomanagement-aktien i {
  font-size: 0.875rem;
}

.hero-image-block-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .hero-image-block-risikomanagement-aktien {
    max-width: 100%;
  }
}

.hero-image-risikomanagement-aktien {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

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

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

.intro-text-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .intro-text-risikomanagement-aktien {
    max-width: 100%;
  }
}

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

.intro-description-risikomanagement-aktien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .intro-image-risikomanagement-aktien {
    max-width: 100%;
  }
}

.intro-img-risikomanagement-aktien {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.concept-header-risikomanagement-aktien {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.concept-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.concept-cards-risikomanagement-aktien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.concept-card-risikomanagement-aktien {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.concept-card-risikomanagement-aktien:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.methodology-wrapper-risikomanagement-aktien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.methodology-text-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .methodology-text-risikomanagement-aktien {
    max-width: 100%;
  }
}

.methodology-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methodology-description-risikomanagement-aktien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.methodology-highlight-risikomanagement-aktien {
  padding: 1.5rem;
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.methodology-image-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .methodology-image-risikomanagement-aktien {
    max-width: 100%;
  }
}

.methodology-img-risikomanagement-aktien {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.strategy-header-risikomanagement-aktien {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.strategy-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.strategy-steps-risikomanagement-aktien {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.strategy-step-risikomanagement-aktien {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.strategy-step-risikomanagement-aktien:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.strategy-step-content-risikomanagement-aktien {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

@media (max-width: 768px) {
  .strategy-step-risikomanagement-aktien {
    flex-direction: column;
  }
}

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

.tools-wrapper-risikomanagement-aktien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.tools-image-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .tools-image-risikomanagement-aktien {
    max-width: 100%;
  }
}

.tools-img-risikomanagement-aktien {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: block;
}

.tools-text-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .tools-text-risikomanagement-aktien {
    max-width: 100%;
  }
}

.tools-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools-description-risikomanagement-aktien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tools-list-risikomanagement-aktien {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-item-risikomanagement-aktien {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.tools-item-title-risikomanagement-aktien {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.tools-item-text-risikomanagement-aktien {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.insight-section-risikomanagement-aktien {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.insight-quote-risikomanagement-aktien {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 5px solid #10b981;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin: 0;
}

.insight-quote-text-risikomanagement-aktien {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.insight-cite-risikomanagement-aktien {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 500;
}

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

.conclusion-wrapper-risikomanagement-aktien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.conclusion-text-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .conclusion-text-risikomanagement-aktien {
    max-width: 100%;
  }
}

.conclusion-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-description-risikomanagement-aktien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-risikomanagement-aktien {
  padding: 1.5rem;
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-strong-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-weight: 600;
}

.conclusion-image-risikomanagement-aktien {
  flex: 1 1 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .conclusion-image-risikomanagement-aktien {
    max-width: 100%;
  }
}

.conclusion-img-risikomanagement-aktien {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: block;
}

.disclaimer-section-risikomanagement-aktien {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-risikomanagement-aktien {
  background: #fef2f2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #ef4444;
  border-radius: 8px;
}

.disclaimer-title-risikomanagement-aktien {
  color: #991b1b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-risikomanagement-aktien i {
  font-size: 1.25rem;
}

.disclaimer-text-risikomanagement-aktien {
  color: #7f1d1d;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

.related-header-risikomanagement-aktien {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-risikomanagement-aktien {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-risikomanagement-aktien {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-risikomanagement-aktien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-risikomanagement-aktien {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-risikomanagement-aktien:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

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

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

.related-card-description-risikomanagement-aktien {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .hero-content-risikomanagement-aktien {
    flex-direction: column;
  }

  .intro-content-risikomanagement-aktien {
    flex-direction: column;
  }

  .methodology-wrapper-risikomanagement-aktien {
    flex-direction: column;
  }

  .tools-wrapper-risikomanagement-aktien {
    flex-direction: column-reverse;
  }

  .conclusion-wrapper-risikomanagement-aktien {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-risikomanagement-aktien {
    font-size: 0.75rem;
  }

  .meta-badges-risikomanagement-aktien {
    gap: 0.5rem;
  }

  .meta-badge-risikomanagement-aktien {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

.main-marktanalyse-grundlagen {
  width: 100%;
  background: #f9fafb;
}

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

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

.breadcrumbs-marktanalyse-grundlagen a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-marktanalyse-grundlagen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-marktanalyse-grundlagen {
  color: #9ca3af;
}

.breadcrumb-current-marktanalyse-grundlagen {
  color: #4b5563;
}

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

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

.hero-text-wrapper-marktanalyse-grundlagen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.article-meta-marktanalyse-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

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

.hero-stats-marktanalyse-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1.5rem;
}

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

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

.stat-label-marktanalyse-grundlagen {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-image-wrapper-marktanalyse-grundlagen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-marktanalyse-grundlagen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-marktanalyse-grundlagen {
    flex-direction: column;
  }

  .hero-text-wrapper-marktanalyse-grundlagen,
  .hero-image-wrapper-marktanalyse-grundlagen {
    flex: 1 1 100%;
  }

  .hero-stats-marktanalyse-grundlagen {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

.introduction-text-marktanalyse-grundlagen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.introduction-paragraph-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.introduction-image-marktanalyse-grundlagen {
  flex: 1 1 50%;
}

.introduction-img-marktanalyse-grundlagen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .introduction-content-marktanalyse-grundlagen {
    flex-direction: column;
  }

  .introduction-text-marktanalyse-grundlagen,
  .introduction-image-marktanalyse-grundlagen {
    flex: 1 1 100%;
  }
}

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

.section-header-marktanalyse-grundlagen {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.fundamental-card-marktanalyse-grundlagen {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.fundamental-card-marktanalyse-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.card-title-marktanalyse-grundlagen {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.card-description-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.card-list-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.list-item-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  color: #4b5563;
  padding-left: 1.75rem;
  position: relative;
}

.list-item-marktanalyse-grundlagen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

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

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

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

.process-steps-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step-marktanalyse-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  align-items: flex-start;
}

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

.process-step-content-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-marktanalyse-grundlagen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.process-step-text-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .process-step-marktanalyse-grundlagen {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-marktanalyse-grundlagen {
    min-width: auto;
  }
}

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

.tools-content-marktanalyse-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tools-text-marktanalyse-grundlagen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.tools-description-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.tools-list-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-item-marktanalyse-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.tool-icon-marktanalyse-grundlagen {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 8px;
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tool-content-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tool-name-marktanalyse-grundlagen {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.tool-info-marktanalyse-grundlagen {
  font-size: 0.875rem;
  color: #4b5563;
}

.tools-image-marktanalyse-grundlagen {
  flex: 1 1 50%;
}

.tools-img-marktanalyse-grundlagen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .tools-content-marktanalyse-grundlagen {
    flex-direction: column;
  }

  .tools-text-marktanalyse-grundlagen,
  .tools-image-marktanalyse-grundlagen {
    flex: 1 1 100%;
  }
}

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

.strategy-wrapper-marktanalyse-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.strategy-image-marktanalyse-grundlagen {
  flex: 1 1 50%;
}

.strategy-img-marktanalyse-grundlagen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.strategy-text-marktanalyse-grundlagen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.strategy-quote-marktanalyse-grundlagen {
  padding: 1.5rem 2rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-marktanalyse-grundlagen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-marktanalyse-grundlagen {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  display: block;
}

.strategy-paragraph-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.strategy-list-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.strategy-list-item-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  color: #4b5563;
  padding-left: 1.75rem;
  position: relative;
}

.strategy-list-item-marktanalyse-grundlagen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

@media (max-width: 768px) {
  .strategy-wrapper-marktanalyse-grundlagen {
    flex-direction: column;
  }

  .strategy-image-marktanalyse-grundlagen,
  .strategy-text-marktanalyse-grundlagen {
    flex: 1 1 100%;
  }
}

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

.practical-header-marktanalyse-grundlagen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.practical-subtitle-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.practical-exercises-marktanalyse-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.exercise-card-marktanalyse-grundlagen {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.3s ease;
}

.exercise-card-marktanalyse-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.exercise-number-marktanalyse-grundlagen {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  opacity: 0.3;
}

.exercise-title-marktanalyse-grundlagen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.exercise-text-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

.conclusion-content-marktanalyse-grundlagen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.conclusion-text-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.next-steps-marktanalyse-grundlagen {
  padding: 1.5rem 0;
}

.next-steps-title-marktanalyse-grundlagen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.next-steps-list-marktanalyse-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.next-step-item-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  color: #4b5563;
  padding-left: 1.75rem;
  position: relative;
}

.next-step-item-marktanalyse-grundlagen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.conclusion-closing-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
  font-weight: 500;
}

.cta-button-marktanalyse-grundlagen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: fit-content;
}

.cta-button-marktanalyse-grundlagen:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

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

.disclaimer-box-marktanalyse-grundlagen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.disclaimer-title-marktanalyse-grundlagen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-marktanalyse-grundlagen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.disclaimer-text-marktanalyse-grundlagen:last-child {
  margin-bottom: 0;
}

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

.related-header-marktanalyse-grundlagen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-marktanalyse-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-marktanalyse-grundlagen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-marktanalyse-grundlagen:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.related-card-image-marktanalyse-grundlagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-marktanalyse-grundlagen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.related-card-text-marktanalyse-grundlagen {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}

.related-card-link-marktanalyse-grundlagen {
  display: inline-flex;
  align-items: center;
  color: #059669;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-marktanalyse-grundlagen:hover {
  color: #047857;
  text-decoration: underline;
  transform: translateX(4px);
}

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

@media (min-width: 1024px) {
  .fundamentals-grid-marktanalyse-grundlagen {
    gap: 2rem;
  }

  .practical-exercises-marktanalyse-grundlagen {
    gap: 2rem;
  }
}

.main-technische-analyse-erklaert {
  width: 100%;
}

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

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

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

.hero-text-wrapper-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-technische-analyse-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.meta-badge-technische-analyse-erklaert i {
  font-size: 0.75rem;
}

.hero-image-wrapper-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-technische-analyse-erklaert {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-technische-analyse-erklaert {
    flex-direction: column;
  }

  .hero-text-wrapper-technische-analyse-erklaert,
  .hero-image-wrapper-technische-analyse-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-technische-analyse-erklaert {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-technische-analyse-erklaert {
    flex-direction: column;
  }

  .intro-text-technische-analyse-erklaert,
  .intro-image-technische-analyse-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-technische-analyse-erklaert {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-technische-analyse-erklaert {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.process-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.process-steps-technische-analyse-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-step-technische-analyse-erklaert {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.process-step-content-technische-analyse-erklaert {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-technische-analyse-erklaert {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.process-step-text-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-technische-analyse-erklaert {
    flex-direction: column;
  }

  .process-step-number-technische-analyse-erklaert {
    min-width: auto;
  }
}

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

.features-header-technische-analyse-erklaert {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.features-content-technische-analyse-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.features-text-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-description-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.features-subtitle-heading-technische-analyse-erklaert {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.features-list-intro-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.features-list-technische-analyse-erklaert {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-list-item-technische-analyse-erklaert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.features-list-item-technische-analyse-erklaert i {
  color: #059669;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.features-image-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-image-img-technische-analyse-erklaert {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .features-content-technische-analyse-erklaert {
    flex-direction: column;
  }

  .features-text-technische-analyse-erklaert,
  .features-image-technische-analyse-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-technische-analyse-erklaert {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-technische-analyse-erklaert {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tools-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.tools-wrapper-technische-analyse-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-intro-text-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tools-cards-technische-analyse-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tools-card-technische-analyse-erklaert {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tools-card-technische-analyse-erklaert:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tools-card-title-technische-analyse-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.tools-card-text-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.content-section-technische-analyse-erklaert {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-technische-analyse-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-quote-technische-analyse-erklaert {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 0 8px 8px 0;
}

.quote-text-technische-analyse-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #111827;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.quote-author-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  font-style: normal;
}

.content-image-technische-analyse-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-img-technische-analyse-erklaert {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-technische-analyse-erklaert {
    flex-direction: column;
  }

  .content-text-technische-analyse-erklaert,
  .content-image-technische-analyse-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-technische-analyse-erklaert {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-technische-analyse-erklaert {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-steps-technische-analyse-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.conclusion-step-technische-analyse-erklaert {
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 10px;
  border-top: 3px solid #059669;
  text-align: center;
}

.step-number-technische-analyse-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #059669;
}

.step-text-technische-analyse-erklaert {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.5;
}

.conclusion-cta-technische-analyse-erklaert {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e5e7eb;
}

.conclusion-cta-text-technische-analyse-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #111827;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-button-technische-analyse-erklaert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 10px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-technische-analyse-erklaert:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.3);
}

.disclaimer-section-technische-analyse-erklaert {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.disclaimer-content-technische-analyse-erklaert {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-technische-analyse-erklaert {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.related-header-technische-analyse-erklaert {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-technische-analyse-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-technische-analyse-erklaert {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #ffffff;
}

.related-card-technische-analyse-erklaert:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.related-image-wrapper-technische-analyse-erklaert {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.related-card-technische-analyse-erklaert:hover .related-card-image-technische-analyse-erklaert {
  transform: scale(1.05);
}

.related-card-content-technische-analyse-erklaert {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-technische-analyse-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-technische-analyse-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-technische-analyse-erklaert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.related-card-link-technische-analyse-erklaert:hover {
  color: #047857;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .hero-section-technische-analyse-erklaert {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .intro-section-technische-analyse-erklaert,
  .features-section-technische-analyse-erklaert,
  .content-section-technische-analyse-erklaert {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .process-section-technische-analyse-erklaert,
  .tools-section-technische-analyse-erklaert,
  .conclusion-section-technische-analyse-erklaert {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-technische-analyse-erklaert {
    padding: 6rem 0;
  }

  .intro-section-technische-analyse-erklaert,
  .features-section-technische-analyse-erklaert,
  .content-section-technische-analyse-erklaert,
  .process-section-technische-analyse-erklaert,
  .tools-section-technische-analyse-erklaert,
  .conclusion-section-technische-analyse-erklaert {
    padding: 6rem 0;
  }
}

.breadcrumbs-technische-analyse-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

.breadcrumbs-technische-analyse-erklaert a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-technische-analyse-erklaert a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-technische-analyse-erklaert span {
  color: #9ca3af;
}

.main-portfolio-aufbau-anfaenger {
  width: 100%;
}

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

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

.hero-section-portfolio-aufbau-anfaenger {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-content-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-block-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-portfolio-aufbau-anfaenger {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-portfolio-aufbau-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-portfolio-aufbau-anfaenger a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-portfolio-aufbau-anfaenger a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-portfolio-aufbau-anfaenger span {
  color: #9ca3af;
}

.hero-title-portfolio-aufbau-anfaenger {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.article-meta-portfolio-aufbau-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.meta-badge-portfolio-aufbau-anfaenger i {
  color: #059669;
}

.hero-stats-portfolio-aufbau-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  justify-content: flex-start;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}

.stat-item-portfolio-aufbau-anfaenger {
  flex: 0 1 auto;
  text-align: left;
}

.stat-number-portfolio-aufbau-anfaenger {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  display: block;
  line-height: 1;
}

.stat-label-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  display: block;
  margin-top: 0.5rem;
}

.intro-section-portfolio-aufbau-anfaenger {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-portfolio-aufbau-anfaenger {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-description-portfolio-aufbau-anfaenger:last-child {
  margin-bottom: 0;
}

.section-header-portfolio-aufbau-anfaenger {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

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

.foundations-section-portfolio-aufbau-anfaenger {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.foundations-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.foundations-subtitle-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundations-steps-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.foundations-step-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.foundations-step-content-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundations-step-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.foundations-step-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.asset-classes-section-portfolio-aufbau-anfaenger {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.asset-classes-content-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.asset-classes-text-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.asset-classes-image-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.asset-classes-image-img-portfolio-aufbau-anfaenger {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.asset-classes-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.asset-classes-description-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.asset-classes-list-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.asset-item-portfolio-aufbau-anfaenger {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.asset-item-portfolio-aufbau-anfaenger:last-child {
  border-bottom: none;
}

.asset-item-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.asset-item-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.strategy-section-portfolio-aufbau-anfaenger {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.strategy-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.strategy-cards-portfolio-aufbau-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-portfolio-aufbau-anfaenger {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card-portfolio-aufbau-anfaenger:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.strategy-card-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.strategy-card-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.quote-section-portfolio-aufbau-anfaenger {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-portfolio-aufbau-anfaenger {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-portfolio-aufbau-anfaenger {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-author-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.implementation-section-portfolio-aufbau-anfaenger {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-content-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-image-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-portfolio-aufbau-anfaenger {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.implementation-text-portfolio-aufbau-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.implementation-description-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.implementation-list-portfolio-aufbau-anfaenger {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-list-item-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.implementation-list-item-portfolio-aufbau-anfaenger::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 1.25rem;
}

.list-item-title-portfolio-aufbau-anfaenger {
  color: #0f172a;
  display: inline;
  font-weight: 600;
}

.mistakes-section-portfolio-aufbau-anfaenger {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.mistakes-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mistakes-image-portfolio-aufbau-anfaenger {
  margin-bottom: clamp(2rem, 4vw, 4rem);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mistakes-image-img-portfolio-aufbau-anfaenger {
  width: 100%;
  height: auto;
  display: block;
}

.mistakes-list-portfolio-aufbau-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.mistake-item-portfolio-aufbau-anfaenger {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #ef4444;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mistake-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.mistake-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.conclusion-section-portfolio-aufbau-anfaenger {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-portfolio-aufbau-anfaenger {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-text-portfolio-aufbau-anfaenger:last-of-type {
  margin-bottom: 3rem;
}

.cta-box-portfolio-aufbau-anfaenger {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
}

.cta-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-primary-portfolio-aufbau-anfaenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border: none;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-portfolio-aufbau-anfaenger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-portfolio-aufbau-anfaenger {
  background: #f9fafb;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 2px solid #e5e7eb;
}

.disclaimer-box-portfolio-aufbau-anfaenger {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-portfolio-aufbau-anfaenger {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 2px solid #e5e7eb;
}

.related-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

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

.related-card-portfolio-aufbau-anfaenger {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-portfolio-aufbau-anfaenger:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-portfolio-aufbau-anfaenger {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-portfolio-aufbau-anfaenger {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-portfolio-aufbau-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex: 1;
}

.related-card-title-portfolio-aufbau-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-portfolio-aufbau-anfaenger {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-portfolio-aufbau-anfaenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-portfolio-aufbau-anfaenger:hover {
  color: #047857;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-portfolio-aufbau-anfaenger,
  .intro-content-portfolio-aufbau-anfaenger,
  .asset-classes-content-portfolio-aufbau-anfaenger,
  .implementation-content-portfolio-aufbau-anfaenger {
    flex-direction: column;
  }

  .hero-text-block-portfolio-aufbau-anfaenger,
  .hero-image-block-portfolio-aufbau-anfaenger,
  .intro-text-portfolio-aufbau-anfaenger,
  .intro-image-portfolio-aufbau-anfaenger,
  .asset-classes-text-portfolio-aufbau-anfaenger,
  .asset-classes-image-portfolio-aufbau-anfaenger,
  .implementation-image-portfolio-aufbau-anfaenger,
  .implementation-text-portfolio-aufbau-anfaenger {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-portfolio-aufbau-anfaenger {
    gap: 1.5rem;
  }

  .foundations-step-portfolio-aufbau-anfaenger {
    flex-direction: column;
  }

  .mistake-item-portfolio-aufbau-anfaenger {
    flex: 1 1 100%;
    min-width: auto;
  }

  .related-card-portfolio-aufbau-anfaenger {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-portfolio-aufbau-anfaenger {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-portfolio-aufbau-anfaenger {
    text-align: center;
  }

  .breadcrumbs-portfolio-aufbau-anfaenger {
    font-size: 0.75rem;
  }

  .strategy-card-portfolio-aufbau-anfaenger {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-portfolio-aufbau-anfaenger {
    padding: 1.5rem;
  }

  .quote-text-portfolio-aufbau-anfaenger {
    font-size: 1.125rem;
  }
}

.main-fundamentalanalyse-trader {
  width: 100%;
}

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

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

.hero-text-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.breadcrumbs-fundamentalanalyse-trader {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-fundamentalanalyse-trader a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-fundamentalanalyse-trader a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-fundamentalanalyse-trader span {
  color: #9ca3af;
}

.article-meta-fundamentalanalyse-trader {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-fundamentalanalyse-trader i {
  font-size: 0.875rem;
}

.hero-image-fundamentalanalyse-trader {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.intro-text-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-fundamentalanalyse-trader {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.content-section-fundamentalanalyse-trader {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-subtitle-fundamentalanalyse-trader {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.key-points-fundamentalanalyse-trader {
  margin: 2rem 0;
}

.points-list-fundamentalanalyse-trader {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point-item-fundamentalanalyse-trader {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  padding-left: 0;
}

.point-item-fundamentalanalyse-trader::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
}

.content-image-fundamentalanalyse-trader {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.analysis-wrapper-fundamentalanalyse-trader {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.analysis-image-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.analysis-text-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.analysis-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.methodology-steps-fundamentalanalyse-trader {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-fundamentalanalyse-trader {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

.step-content-fundamentalanalyse-trader {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

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

.analysis-image-fundamentalanalyse-trader {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .analysis-wrapper-fundamentalanalyse-trader {
    flex-direction: column;
  }
  
  .analysis-image-block-fundamentalanalyse-trader,
  .analysis-text-block-fundamentalanalyse-trader {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.tools-section-fundamentalanalyse-trader {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-fundamentalanalyse-trader {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-fundamentalanalyse-trader {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

.tool-card-fundamentalanalyse-trader {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-fundamentalanalyse-trader:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.tool-name-fundamentalanalyse-trader {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.tool-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.insight-wrapper-fundamentalanalyse-trader {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.insight-text-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-image-block-fundamentalanalyse-trader {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.insight-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-fundamentalanalyse-trader {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-fundamentalanalyse-trader {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.insight-image-fundamentalanalyse-trader {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .insight-wrapper-fundamentalanalyse-trader {
    flex-direction: column;
  }
  
  .insight-text-block-fundamentalanalyse-trader,
  .insight-image-block-fundamentalanalyse-trader {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-fundamentalanalyse-trader {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-fundamentalanalyse-trader {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-fundamentalanalyse-trader {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.cta-box-fundamentalanalyse-trader {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-fundamentalanalyse-trader {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-fundamentalanalyse-trader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-fundamentalanalyse-trader:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

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

.related-header-fundamentalanalyse-trader {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-fundamentalanalyse-trader {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.related-cards-fundamentalanalyse-trader {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-fundamentalanalyse-trader {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-fundamentalanalyse-trader:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.related-card-content-fundamentalanalyse-trader {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.related-card-link-fundamentalanalyse-trader {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-fundamentalanalyse-trader:hover {
  color: #047857;
  text-decoration: underline;
}

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

.disclaimer-section-fundamentalanalyse-trader {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-fundamentalanalyse-trader {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-fundamentalanalyse-trader {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-fundamentalanalyse-trader {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-section-fundamentalanalyse-trader,
  .intro-section-fundamentalanalyse-trader,
  .content-section-fundamentalanalyse-trader,
  .analysis-section-fundamentalanalyse-trader,
  .tools-section-fundamentalanalyse-trader,
  .insight-section-fundamentalanalyse-trader,
  .conclusion-section-fundamentalanalyse-trader,
  .related-section-fundamentalanalyse-trader,
  .disclaimer-section-fundamentalanalyse-trader {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-fundamentalanalyse-trader,
  .intro-section-fundamentalanalyse-trader,
  .content-section-fundamentalanalyse-trader,
  .analysis-section-fundamentalanalyse-trader,
  .tools-section-fundamentalanalyse-trader,
  .insight-section-fundamentalanalyse-trader,
  .conclusion-section-fundamentalanalyse-trader,
  .related-section-fundamentalanalyse-trader,
  .disclaimer-section-fundamentalanalyse-trader {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }
}

.main-boersenplattformen-tools {
  width: 100%;
  background: #f9fafb;
}

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

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

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

.hero-text-wrapper-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-boersenplattformen-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumb-link-boersenplattformen-tools {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-boersenplattformen-tools:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-boersenplattformen-tools {
  color: #9ca3af;
}

.breadcrumb-current-boersenplattformen-tools {
  color: #6b7280;
}

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

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

.hero-meta-boersenplattformen-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-boersenplattformen-tools i {
  font-size: 0.875rem;
}

.hero-stats-boersenplattformen-tools {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

.stat-number-boersenplattformen-tools {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-boersenplattformen-tools {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #6b7280;
  font-weight: 500;
}

.hero-image-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-boersenplattformen-tools {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-boersenplattformen-tools {
    flex-direction: column;
  }

  .hero-text-wrapper-boersenplattformen-tools,
  .hero-image-boersenplattformen-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-boersenplattformen-tools {
    gap: 1.5rem;
  }
}

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

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

.intro-text-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-boersenplattformen-tools {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-boersenplattformen-tools {
    flex-direction: column;
  }

  .intro-text-boersenplattformen-tools,
  .intro-image-boersenplattformen-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.platforms-section-boersenplattformen-tools {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.platforms-header-boersenplattformen-tools {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.platforms-subtitle-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.platforms-cards-boersenplattformen-tools {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.platforms-card-boersenplattformen-tools {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.platforms-card-boersenplattformen-tools:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

.card-title-boersenplattformen-tools {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.card-description-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

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

.features-wrapper-boersenplattformen-tools {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.features-text-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-title-boersenplattformen-tools {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-description-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.features-list-boersenplattformen-tools {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item-boersenplattformen-tools {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-number-boersenplattformen-tools {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.feature-content-boersenplattformen-tools {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item-title-boersenplattformen-tools {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.feature-item-text-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.features-image-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-img-boersenplattformen-tools {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .features-wrapper-boersenplattformen-tools {
    flex-direction: column;
  }

  .features-text-boersenplattformen-tools,
  .features-image-boersenplattformen-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.tools-wrapper-boersenplattformen-tools {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-image-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-boersenplattformen-tools {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tools-text-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-subtitle-boersenplattformen-tools {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-description-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tools-list-boersenplattformen-tools {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.tools-list-item-boersenplattformen-tools::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.tools-note-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #6b7280;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(5, 150, 105, 0.05);
  border-left: 3px solid #059669;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .tools-wrapper-boersenplattformen-tools {
    flex-direction: column;
  }

  .tools-image-boersenplattformen-tools,
  .tools-text-boersenplattformen-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.selection-header-boersenplattformen-tools {
  text-align: center;
  margin-bottom: 3rem;
}

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

.selection-subtitle-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.selection-content-boersenplattformen-tools {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.selection-text-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-subheading-boersenplattformen-tools {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.steps-container-boersenplattformen-tools {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-boersenplattformen-tools {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 12px;
}

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

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

.step-title-boersenplattformen-tools {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.step-text-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.selection-image-boersenplattformen-tools {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-img-boersenplattformen-tools {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .selection-content-boersenplattformen-tools {
    flex-direction: column;
  }

  .selection-text-boersenplattformen-tools,
  .selection-image-boersenplattformen-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-boersenplattformen-tools {
    padding: 1.25rem;
  }
}

.conclusion-section-boersenplattformen-tools {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-boersenplattformen-tools {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-boersenplattformen-tools {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.featured-quote-boersenplattformen-tools {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.quote-author-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #6b7280;
  font-style: normal;
}

.conclusion-text-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-boersenplattformen-tools {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary-boersenplattformen-tools {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-boersenplattformen-tools:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.disclaimer-section-boersenplattformen-tools {
  background: #f0fdf4;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
  overflow: hidden;
}

.disclaimer-content-boersenplattformen-tools {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-title-boersenplattformen-tools {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #059669;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #065f46;
  line-height: 1.7;
}

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

.related-header-boersenplattformen-tools {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-boersenplattformen-tools {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-boersenplattformen-tools {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-boersenplattformen-tools:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

.related-card-img-boersenplattformen-tools {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-boersenplattformen-tools {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-boersenplattformen-tools {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-boersenplattformen-tools {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-boersenplattformen-tools:hover .related-card-link-boersenplattformen-tools {
  color: #047857;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .breadcrumbs-boersenplattformen-tools {
    font-size: 0.75rem;
  }
}

.main-psychologie-handels {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary) !important;
}

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

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

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

.breadcrumbs-psychologie-handels a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-psychologie-handels a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.breadcrumbs-psychologie-handels span {
  color: var(--color-text-secondary);
}

.hero-content-psychologie-handels {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content-psychologie-handels {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-wrapper-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-text-wrapper-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-psychologie-handels {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-psychologie-handels {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-psychologie-handels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-psychologie-handels i {
  font-size: 0.875rem;
}

.hero-image-wrapper-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-image-wrapper-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-psychologie-handels {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.intro-section-psychologie-handels {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-psychologie-handels {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-psychologie-handels {
    flex-direction: row;
    align-items: center;
  }
}

.intro-text-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-text-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-psychologie-handels {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.intro-image-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-image-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-psychologie-handels img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-section-one-psychologie-handels {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-psychologie-handels {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper-psychologie-handels {
    flex-direction: row;
    align-items: center;
  }
}

.content-text-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-text-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-title-psychologie-handels {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.content-list-psychologie-handels {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-list-item-psychologie-handels {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.content-list-item-psychologie-handels::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.2);
  color: var(--color-primary);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 2px;
}

.content-image-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-image-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-image-psychologie-handels img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-section-two-psychologie-handels {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-psychologie-handels {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper-two-psychologie-handels {
    flex-direction: row-reverse;
    align-items: center;
  }
}

.content-image-two-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-image-two-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-image-two-psychologie-handels img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-text-two-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-text-two-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-title-two-psychologie-handels {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-two-psychologie-handels {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-psychologie-handels {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(5, 150, 105, 0.08);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.quote-text-psychologie-handels {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary) !important;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-psychologie-handels {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

.content-section-three-psychologie-handels {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-psychologie-handels {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper-three-psychologie-handels {
    flex-direction: row;
    align-items: center;
  }
}

.content-text-three-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-text-three-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-title-three-psychologie-handels {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-three-psychologie-handels {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-three-psychologie-handels {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-image-three-psychologie-handels {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-image-three-psychologie-handels img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.conclusion-content-psychologie-handels {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-psychologie-handels {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-psychologie-handels {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.key-takeaways-psychologie-handels {
  background: rgba(5, 150, 105, 0.08);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: 2rem;
}

.takeaways-title-psychologie-handels {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
}

.takeaways-list-psychologie-handels {
  list-style: none;
}

.takeaway-item-psychologie-handels {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.takeaway-item-psychologie-handels:last-child {
  margin-bottom: 0;
}

.takeaway-item-psychologie-handels::before {
  content: '';
  flex-shrink: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.related-section-psychologie-handels {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-psychologie-handels {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-psychologie-handels {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-psychologie-handels {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-psychologie-handels {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-psychologie-handels:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.related-card-image-psychologie-handels {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-psychologie-handels {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-psychologie-handels:hover .related-image-psychologie-handels {
  transform: scale(1.05);
}

.related-card-content-psychologie-handels {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-psychologie-handels {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  line-height: 1.3;
}

.related-card-text-psychologie-handels {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-psychologie-handels {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-psychologie-handels:hover {
  gap: 1rem;
  text-decoration: underline;
}

.related-card-link-psychologie-handels::after {
  content: '';
}

.disclaimer-section-psychologie-handels {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-psychologie-handels {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-psychologie-handels {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-bottom: 1rem;
}

.disclaimer-text-psychologie-handels {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-psychologie-handels {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .intro-section-psychologie-handels,
  .content-section-one-psychologie-handels,
  .content-section-two-psychologie-handels,
  .content-section-three-psychologie-handels,
  .conclusion-section-psychologie-handels,
  .related-section-psychologie-handels {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-content-psychologie-handels,
  .intro-content-psychologie-handels,
  .content-wrapper-psychologie-handels,
  .content-wrapper-two-psychologie-handels,
  .content-wrapper-three-psychologie-handels {
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.main-langfristige-kurzfristige-strategien {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-langfristige-kurzfristige-strategien a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-langfristige-kurzfristige-strategien a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-langfristige-kurzfristige-strategien span {
  color: var(--color-text-light);
}

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

.hero-text-block-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary) !important;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-langfristige-kurzfristige-strategien {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.meta-badge-langfristige-kurzfristige-strategien i {
  color: var(--color-primary);
}

.hero-image-block-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-langfristige-kurzfristige-strategien {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-langfristige-kurzfristige-strategien {
    flex-direction: column;
  }

  .hero-text-block-langfristige-kurzfristige-strategien,
  .hero-image-block-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-langfristige-kurzfristige-strategien {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-langfristige-kurzfristige-strategien {
    flex-direction: column;
  }

  .intro-text-langfristige-kurzfristige-strategien,
  .intro-image-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.comparison-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.comparison-header-langfristige-kurzfristige-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.comparison-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 0.75rem;
}

.comparison-subtitle-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.comparison-grid-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.comparison-item-langfristige-kurzfristige-strategien {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.comparison-label-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.comparison-content-langfristige-kurzfristige-strategien p {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .comparison-item-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }
}

.content-one-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-one-langfristige-kurzfristige-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-one-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-one-highlight-langfristige-kurzfristige-strategien {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary) !important;
  font-weight: 500;
  margin: 0;
}

.content-image-one-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-langfristige-kurzfristige-strategien {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-langfristige-kurzfristige-strategien {
    flex-direction: column;
  }

  .content-text-one-langfristige-kurzfristige-strategien,
  .content-image-one-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-two-langfristige-kurzfristige-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-langfristige-kurzfristige-strategien {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.content-text-two-langfristige-kurzfristige-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-two-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-two-highlight-langfristige-kurzfristige-strategien {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-two-langfristige-kurzfristige-strategien {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary) !important;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-two-langfristige-kurzfristige-strategien {
    flex-direction: column;
  }

  .content-image-two-langfristige-kurzfristige-strategien,
  .content-text-two-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.methods-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.methods-header-langfristige-kurzfristige-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methods-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 0.75rem;
}

.methods-subtitle-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.methods-cards-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.methods-card-langfristige-kurzfristige-strategien {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

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

.methods-card-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
}

.methods-card-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .methods-card-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }
}

.quote-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-langfristige-kurzfristige-strategien {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
}

.quote-text-langfristige-kurzfristige-strategien {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--color-text-primary) !important;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-author-langfristige-kurzfristige-strategien {
  display: block;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.considerations-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.considerations-header-langfristige-kurzfristige-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.considerations-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
}

.considerations-content-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.considerations-text-langfristige-kurzfristige-strategien {
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 280px;
}

.considerations-subtitle-langfristige-kurzfristige-strategien {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.25rem;
}

.considerations-list-langfristige-kurzfristige-strategien {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-langfristige-kurzfristige-strategien {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.list-item-langfristige-kurzfristige-strategien::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .considerations-text-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }
}

.final-image-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.final-section-image-langfristige-kurzfristige-strategien {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

.conclusion-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-langfristige-kurzfristige-strategien {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-langfristige-kurzfristige-strategien {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-langfristige-kurzfristige-strategien {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-langfristige-kurzfristige-strategien:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.disclaimer-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-langfristige-kurzfristige-strategien {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #fff9e6;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
}

.disclaimer-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.disclaimer-text-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #78350f;
  line-height: 1.7;
  margin: 0;
}

.related-section-langfristige-kurzfristige-strategien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-langfristige-kurzfristige-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin-bottom: 0.75rem;
}

.related-subtitle-langfristige-kurzfristige-strategien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.related-cards-langfristige-kurzfristige-strategien {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-langfristige-kurzfristige-strategien {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-langfristige-kurzfristige-strategien {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-langfristige-kurzfristige-strategien {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-langfristige-kurzfristige-strategien {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-langfristige-kurzfristige-strategien {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  line-height: 1.3;
}

.related-card-description-langfristige-kurzfristige-strategien {
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-langfristige-kurzfristige-strategien {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.related-link-langfristige-kurzfristige-strategien:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-langfristige-kurzfristige-strategien {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .hero-section-langfristige-kurzfristige-strategien {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .intro-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .comparison-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-one-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-two-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methods-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .quote-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .considerations-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-langfristige-kurzfristige-strategien {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-langfristige-kurzfristige-strategien {
    font-size: 0.7rem;
  }

  .meta-badge-langfristige-kurzfristige-strategien {
    font-size: 0.7rem;
    padding: 0.375rem 0.75rem;
  }

  .comparison-item-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }

  .methods-card-langfristige-kurzfristige-strategien {
    flex: 1 1 100%;
  }
}

.main-marktvolatilitaet-verstehen {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-image-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

.hero-meta-marktvolatilitaet-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-marktvolatilitaet-verstehen i {
  font-size: 1rem;
}

.hero-image-marktvolatilitaet-verstehen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.intro-text-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-text-marktvolatilitaet-verstehen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.intro-image-marktvolatilitaet-verstehen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.measurement-image-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.measurement-text-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.measurement-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.measurement-text-marktvolatilitaet-verstehen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.measurement-list-marktvolatilitaet-verstehen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-marktvolatilitaet-verstehen {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.list-item-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-item-text-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.measurement-image-marktvolatilitaet-verstehen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.strategies-header-marktvolatilitaet-verstehen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.strategies-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.strategies-subtitle-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.strategies-cards-marktvolatilitaet-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-marktvolatilitaet-verstehen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card-marktvolatilitaet-verstehen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-card-number-marktvolatilitaet-verstehen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.strategy-card-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.strategy-card-text-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

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

.risk-text-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.risk-image-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.risk-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.risk-text-marktvolatilitaet-verstehen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.risk-quote-marktvolatilitaet-verstehen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  margin: 1rem 0;
}

.quote-text-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
}

.risk-image-marktvolatilitaet-verstehen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.practical-image-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-text-block-marktvolatilitaet-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.practical-text-marktvolatilitaet-verstehen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.practical-steps-marktvolatilitaet-verstehen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-step-marktvolatilitaet-verstehen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}

.step-number-marktvolatilitaet-verstehen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 50px;
}

.step-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.practical-image-marktvolatilitaet-verstehen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .practical-content-marktvolatilitaet-verstehen {
    flex-direction: column-reverse;
  }
  
  .practical-image-block-marktvolatilitaet-verstehen,
  .practical-text-block-marktvolatilitaet-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .practical-step-marktvolatilitaet-verstehen {
    flex-direction: column;
  }
  
  .step-number-marktvolatilitaet-verstehen {
    min-width: auto;
  }
}

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

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

.conclusion-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-marktvolatilitaet-verstehen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.cta-box-marktvolatilitaet-verstehen {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-marktvolatilitaet-verstehen {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-marktvolatilitaet-verstehen {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-marktvolatilitaet-verstehen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-marktvolatilitaet-verstehen:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-marktvolatilitaet-verstehen {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-marktvolatilitaet-verstehen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

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

.related-header-marktvolatilitaet-verstehen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-marktvolatilitaet-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-marktvolatilitaet-verstehen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-marktvolatilitaet-verstehen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-marktvolatilitaet-verstehen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-marktvolatilitaet-verstehen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-marktvolatilitaet-verstehen {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-marktvolatilitaet-verstehen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-card-link-marktvolatilitaet-verstehen {
  color: #059669;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-marktvolatilitaet-verstehen:hover {
  color: #047857;
  text-decoration: underline;
}

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

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

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

.breadcrumb-link-marktvolatilitaet-verstehen {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-marktvolatilitaet-verstehen:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-marktvolatilitaet-verstehen {
  color: #cbd5e1;
}

.breadcrumb-current-marktvolatilitaet-verstehen {
  color: #64748b;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-section-marktvolatilitaet-verstehen,
  .intro-section-marktvolatilitaet-verstehen,
  .measurement-section-marktvolatilitaet-verstehen,
  .strategies-section-marktvolatilitaet-verstehen,
  .risk-section-marktvolatilitaet-verstehen,
  .practical-section-marktvolatilitaet-verstehen,
  .conclusion-section-marktvolatilitaet-verstehen,
  .disclaimer-section-marktvolatilitaet-verstehen,
  .related-section-marktvolatilitaet-verstehen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-marktvolatilitaet-verstehen,
  .intro-section-marktvolatilitaet-verstehen,
  .measurement-section-marktvolatilitaet-verstehen,
  .strategies-section-marktvolatilitaet-verstehen,
  .risk-section-marktvolatilitaet-verstehen,
  .practical-section-marktvolatilitaet-verstehen,
  .conclusion-section-marktvolatilitaet-verstehen,
  .disclaimer-section-marktvolatilitaet-verstehen,
  .related-section-marktvolatilitaet-verstehen {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
}

.main-handelsplan-erstellen {
  width: 100%;
}

.hero-section-handelsplan-erstellen {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.breadcrumbs-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-handelsplan-erstellen a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs-handelsplan-erstellen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-handelsplan-erstellen span {
  color: #9ca3af;
}

.hero-content-handelsplan-erstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-handelsplan-erstellen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.article-meta-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-handelsplan-erstellen i {
  font-size: 0.875rem;
}

.hero-description-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-image-handelsplan-erstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

.hero-stats-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

.stat-item-handelsplan-erstellen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-handelsplan-erstellen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-handelsplan-erstellen {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-handelsplan-erstellen {
    flex-direction: column;
  }

  .hero-text-wrapper-handelsplan-erstellen,
  .hero-image-wrapper-handelsplan-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-handelsplan-erstellen {
    gap: 1.5rem;
  }
}

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

.introduction-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.introduction-text-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-handelsplan-erstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-img-handelsplan-erstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .introduction-content-handelsplan-erstellen {
    flex-direction: column;
  }

  .introduction-text-handelsplan-erstellen,
  .introduction-image-handelsplan-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-handelsplan-erstellen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.section-header-handelsplan-erstellen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.foundations-title-handelsplan-erstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundations-subtitle-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundations-steps-handelsplan-erstellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundations-step-handelsplan-erstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.foundations-step-content-handelsplan-erstellen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundations-step-title-handelsplan-erstellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.foundations-step-text-handelsplan-erstellen {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .foundations-step-handelsplan-erstellen {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
}

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

.implementation-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.implementation-wrapper-handelsplan-erstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-handelsplan-erstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-description-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-handelsplan-erstellen {
  padding: 2rem;
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-quote-handelsplan-erstellen {
  margin: 0;
  padding: 0;
}

.highlight-quote-handelsplan-erstellen p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
}

.implementation-img-handelsplan-erstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .implementation-wrapper-handelsplan-erstellen {
    flex-direction: column;
  }

  .implementation-text-handelsplan-erstellen,
  .implementation-image-handelsplan-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-handelsplan-erstellen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.strategies-title-handelsplan-erstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategies-cards-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.strategies-card-handelsplan-erstellen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.strategies-card-handelsplan-erstellen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.strategies-card-title-handelsplan-erstellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.strategies-card-text-handelsplan-erstellen {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.risk-management-section-handelsplan-erstellen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.risk-management-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.risk-management-wrapper-handelsplan-erstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.risk-management-image-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.risk-management-text-handelsplan-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.risk-management-title-handelsplan-erstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.risk-management-description-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.risk-management-list-handelsplan-erstellen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-list-item-handelsplan-erstellen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  padding-left: 0;
}

.risk-list-item-handelsplan-erstellen::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
}

.risk-management-img-handelsplan-erstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .risk-management-wrapper-handelsplan-erstellen {
    flex-direction: column-reverse;
  }

  .risk-management-image-handelsplan-erstellen,
  .risk-management-text-handelsplan-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documentation-section-handelsplan-erstellen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documentation-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.documentation-content-handelsplan-erstellen {
  margin-bottom: 3rem;
}

.documentation-title-handelsplan-erstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.documentation-grid-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.documentation-block-handelsplan-erstellen {
  flex: 1 1 250px;
  max-width: 400px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.documentation-block-title-handelsplan-erstellen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.documentation-block-text-handelsplan-erstellen {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.documentation-image-handelsplan-erstellen {
  flex: 1 1 100%;
  margin-top: 2rem;
}

.documentation-img-handelsplan-erstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

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

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

.conclusion-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.conclusion-content-handelsplan-erstellen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-handelsplan-erstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-highlight-handelsplan-erstellen {
  padding: 2rem;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 12px;
  margin: 2rem 0;
}

.conclusion-highlight-text-handelsplan-erstellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.conclusion-cta-handelsplan-erstellen {
  margin-top: 2rem;
}

.btn-conclusion-primary-handelsplan-erstellen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-conclusion-primary-handelsplan-erstellen:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.related-section-handelsplan-erstellen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.related-header-handelsplan-erstellen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-handelsplan-erstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-handelsplan-erstellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-handelsplan-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-handelsplan-erstellen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

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

.related-card-image-handelsplan-erstellen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-handelsplan-erstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-handelsplan-erstellen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-handelsplan-erstellen {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.disclaimer-section-handelsplan-erstellen {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-section-handelsplan-erstellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-handelsplan-erstellen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-handelsplan-erstellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-handelsplan-erstellen {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-handelsplan-erstellen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.main-diversifikation-vermoegensallokation {
  width: 100%;
  background: #f9fafb;
}

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

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

.breadcrumbs-diversifikation-vermoegensallokation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
}

.breadcrumb-link-diversifikation-vermoegensallokation {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-diversifikation-vermoegensallokation:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-diversifikation-vermoegensallokation {
  color: #9ca3af;
}

.breadcrumb-current-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-weight: 500;
}

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

.hero-text-block-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-diversifikation-vermoegensallokation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-diversifikation-vermoegensallokation i {
  color: #059669;
}

.hero-image-diversifikation-vermoegensallokation {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-diversifikation-vermoegensallokation {
    flex-direction: column;
  }

  .hero-text-block-diversifikation-vermoegensallokation,
  .hero-image-block-diversifikation-vermoegensallokation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-diversifikation-vermoegensallokation {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .intro-wrapper-diversifikation-vermoegensallokation {
    flex-direction: column;
  }

  .intro-text-diversifikation-vermoegensallokation,
  .intro-image-diversifikation-vermoegensallokation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-header-diversifikation-vermoegensallokation {
  text-align: center;
  margin-bottom: 3rem;
}

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

.principles-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.principles-steps-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principle-step-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

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

.principle-content-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-step-title-diversifikation-vermoegensallokation {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.principle-step-text-diversifikation-vermoegensallokation {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .principle-step-diversifikation-vermoegensallokation {
    flex-direction: column;
    align-items: flex-start;
  }
}

.strategies-section-diversifikation-vermoegensallokation {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-wrapper-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.strategies-description-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.strategy-highlight-diversifikation-vermoegensallokation {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #059669;
}

.strategy-highlight-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.strategy-highlight-text-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.strategies-image-img-diversifikation-vermoegensallokation {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .strategies-wrapper-diversifikation-vermoegensallokation {
    flex-direction: column;
  }

  .strategies-text-diversifikation-vermoegensallokation,
  .strategies-image-diversifikation-vermoegensallokation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.implementation-header-diversifikation-vermoegensallokation {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.implementation-cards-diversifikation-vermoegensallokation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.implementation-card-diversifikation-vermoegensallokation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implementation-card-diversifikation-vermoegensallokation:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.implementation-card-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
}

.implementation-card-text-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

.benefits-wrapper-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-text-diversifikation-vermoegensallokation {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-img-diversifikation-vermoegensallokation {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.benefits-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.featured-quote-diversifikation-vermoegensallokation {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-diversifikation-vermoegensallokation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
}

.quote-cite-diversifikation-vermoegensallokation {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.benefits-list-diversifikation-vermoegensallokation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-diversifikation-vermoegensallokation {
  padding: 1rem;
  border-radius: 8px;
  background: transparent;
}

.benefit-item-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item-text-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-wrapper-diversifikation-vermoegensallokation {
    flex-direction: column-reverse;
  }

  .benefits-image-diversifikation-vermoegensallokation,
  .benefits-text-diversifikation-vermoegensallokation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-diversifikation-vermoegensallokation {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-text-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-diversifikation-vermoegensallokation {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin-top: 2rem;
}

.cta-heading-diversifikation-vermoegensallokation {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text-diversifikation-vermoegensallokation {
  color: #e0f2fe;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.cta-button-diversifikation-vermoegensallokation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-diversifikation-vermoegensallokation:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.3);
}

.disclaimer-section-diversifikation-vermoegensallokation {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-diversifikation-vermoegensallokation {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-diversifikation-vermoegensallokation {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

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

.related-header-diversifikation-vermoegensallokation {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.related-cards-diversifikation-vermoegensallokation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-diversifikation-vermoegensallokation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-diversifikation-vermoegensallokation:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-diversifikation-vermoegensallokation {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-diversifikation-vermoegensallokation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-diversifikation-vermoegensallokation {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

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

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

@media (min-width: 768px) {
  .hero-content-diversifikation-vermoegensallokation {
    flex-direction: row;
  }

  .intro-wrapper-diversifikation-vermoegensallokation {
    flex-direction: row;
  }

  .strategies-wrapper-diversifikation-vermoegensallokation {
    flex-direction: row;
  }

  .benefits-wrapper-diversifikation-vermoegensallokation {
    flex-direction: row;
  }
}

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

  .intro-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .principles-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .strategies-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .implementation-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .benefits-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .conclusion-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .disclaimer-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }

  .related-section-diversifikation-vermoegensallokation {
    padding: 6rem 0;
  }
}

.main-makrooekonomische-indikatoren {
  width: 100%;
}

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

.breadcrumbs-makrooekonomische-indikatoren {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
  color: #9ca3af;
}

.breadcrumbs-makrooekonomische-indikatoren a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-makrooekonomische-indikatoren a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-makrooekonomische-indikatoren span {
  color: #d1d5db;
}

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

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

.hero-text-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-makrooekonomische-indikatoren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-makrooekonomische-indikatoren i {
  font-size: 0.875rem;
}

.hero-stats-makrooekonomische-indikatoren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-makrooekonomische-indikatoren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-makrooekonomische-indikatoren {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-image-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-makrooekonomische-indikatoren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-makrooekonomische-indikatoren {
    flex-direction: column;
  }

  .hero-text-block-makrooekonomische-indikatoren,
  .hero-image-block-makrooekonomische-indikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-makrooekonomische-indikatoren {
    gap: 1.5rem;
  }
}

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

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

.intro-text-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-makrooekonomische-indikatoren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-makrooekonomische-indikatoren {
    flex-direction: column;
  }

  .intro-text-block-makrooekonomische-indikatoren,
  .intro-image-block-makrooekonomische-indikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.indicators-section-makrooekonomische-indikatoren {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.indicators-header-makrooekonomische-indikatoren {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.indicators-cards-makrooekonomische-indikatoren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.indicators-card-makrooekonomische-indikatoren {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.indicators-card-makrooekonomische-indikatoren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.indicators-card-title-makrooekonomische-indikatoren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.indicators-card-text-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

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

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

.impact-text-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-makrooekonomische-indikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.impact-description-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.impact-highlight-makrooekonomische-indikatoren {
  margin-top: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.impact-quote-makrooekonomische-indikatoren {
  margin: 0;
  padding: 0;
}

.impact-quote-text-makrooekonomische-indikatoren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.impact-quote-author-makrooekonomische-indikatoren {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

.impact-image-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-makrooekonomische-indikatoren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .impact-content-makrooekonomische-indikatoren {
    flex-direction: column;
  }

  .impact-text-block-makrooekonomische-indikatoren,
  .impact-image-block-makrooekonomische-indikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.calendar-section-makrooekonomische-indikatoren {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.calendar-header-makrooekonomische-indikatoren {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.calendar-text-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.calendar-description-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.calendar-steps-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calendar-step-makrooekonomische-indikatoren {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

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

.calendar-step-content-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-step-title-makrooekonomische-indikatoren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.calendar-step-text-makrooekonomische-indikatoren {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.calendar-image-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.calendar-image-makrooekonomische-indikatoren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .calendar-content-makrooekonomische-indikatoren {
    flex-direction: column;
  }

  .calendar-text-block-makrooekonomische-indikatoren,
  .calendar-image-block-makrooekonomische-indikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practical-header-makrooekonomische-indikatoren {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.practical-example-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}

.practical-scenario-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
}

.practical-scenario-title-makrooekonomische-indikatoren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.practical-scenario-text-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practical-reaction-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-reaction-item-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-left: 3px solid #059669;
  border-radius: 4px;
}

.practical-reaction-label-makrooekonomische-indikatoren {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.practical-reaction-value-makrooekonomische-indikatoren {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 500;
}

.practical-image-block-makrooekonomische-indikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-makrooekonomische-indikatoren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-example-makrooekonomische-indikatoren {
    flex-direction: column;
  }

  .practical-scenario-makrooekonomische-indikatoren,
  .practical-image-block-makrooekonomische-indikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-makrooekonomische-indikatoren {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-makrooekonomische-indikatoren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-makrooekonomische-indikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-description-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-key-points-makrooekonomische-indikatoren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.key-point-makrooekonomische-indikatoren {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.key-point-makrooekonomische-indikatoren i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.key-point-text-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #111827;
  text-align: left;
  margin: 0;
  line-height: 1.5;
}

.conclusion-cta-makrooekonomische-indikatoren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.conclusion-cta-makrooekonomische-indikatoren:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.disclaimer-section-makrooekonomische-indikatoren {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-makrooekonomische-indikatoren {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-makrooekonomische-indikatoren {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

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

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

.related-header-makrooekonomische-indikatoren {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.related-cards-makrooekonomische-indikatoren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-makrooekonomische-indikatoren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.related-card-makrooekonomische-indikatoren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.related-card-image-makrooekonomische-indikatoren {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-card-title-makrooekonomische-indikatoren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-makrooekonomische-indikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-makrooekonomische-indikatoren {
  display: inline-flex;
  align-items: center;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  gap: 0.5rem;
}

.related-card-link-makrooekonomische-indikatoren:hover {
  color: #047857;
  text-decoration: underline;
}

.related-card-link-makrooekonomische-indikatoren::after {
  content: '';
  transition: transform 0.2s ease;
}

.related-card-link-makrooekonomische-indikatoren:hover::after {
  transform: translateX(4px);
}

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

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

  .introduction-section-makrooekonomische-indikatoren,
  .indicators-section-makrooekonomische-indikatoren,
  .impact-section-makrooekonomische-indikatoren,
  .calendar-section-makrooekonomische-indikatoren,
  .practical-section-makrooekonomische-indikatoren,
  .conclusion-section-makrooekonomische-indikatoren,
  .related-section-makrooekonomische-indikatoren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .calendar-step-makrooekonomische-indikatoren {
    gap: 2rem;
  }
}

.main-anfaengliche-investitionsschritte {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

.hero-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.5;
}

.article-meta-anfaengliche-investitionsschritte {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.meta-badge-anfaengliche-investitionsschritte i {
  color: var(--color-primary);
}

.hero-image-block-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

.intro-text-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.intro-image-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-anfaengliche-investitionsschritte {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-wrapper-anfaengliche-investitionsschritte {
    flex-direction: column;
  }
  
  .intro-text-anfaengliche-investitionsschritte,
  .intro-image-anfaengliche-investitionsschritte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.section-header-anfaengliche-investitionsschritte {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.foundation-wrapper-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.foundation-text-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.foundation-points-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point-item-anfaengliche-investitionsschritte {
  padding: 1.5rem;
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.point-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.point-text-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.foundation-image-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-img-anfaengliche-investitionsschritte {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .foundation-wrapper-anfaengliche-investitionsschritte {
    flex-direction: column;
  }
  
  .foundation-text-anfaengliche-investitionsschritte,
  .foundation-image-anfaengliche-investitionsschritte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.steps-container-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.step-number-anfaengliche-investitionsschritte {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: 1.25rem;
  font-weight: 600;
}

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

.strategy-image-block-anfaengliche-investitionsschritte {
  margin-top: 2rem;
}

.strategy-img-anfaengliche-investitionsschritte {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .step-card-anfaengliche-investitionsschritte {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .step-number-anfaengliche-investitionsschritte {
    min-width: auto;
  }
}

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

.essentials-wrapper-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.essentials-text-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured-quote-anfaengliche-investitionsschritte {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  margin: 0;
}

.quote-text-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  margin-bottom: 1rem;
}

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

.concepts-list-anfaengliche-investitionsschritte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-item-anfaengliche-investitionsschritte {
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.concept-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.concept-text-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.essentials-image-anfaengliche-investitionsschritte {
  flex: 1 1 50%;
  max-width: 50%;
}

.essentials-img-anfaengliche-investitionsschritte {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .essentials-wrapper-anfaengliche-investitionsschritte {
    flex-direction: column;
  }
  
  .essentials-text-anfaengliche-investitionsschritte,
  .essentials-image-anfaengliche-investitionsschritte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
}

.conclusion-text-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  text-align: center;
}

.cta-box-anfaengliche-investitionsschritte {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-title-anfaengliche-investitionsschritte {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
}

.cta-text-anfaengliche-investitionsschritte {
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  opacity: 0.95;
}

.cta-button-anfaengliche-investitionsschritte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-anfaengliche-investitionsschritte:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

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

.disclaimer-box-anfaengliche-investitionsschritte {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-bg-tertiary);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

.disclaimer-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.related-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
}

.related-subtitle-anfaengliche-investitionsschritte {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-anfaengliche-investitionsschritte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
  justify-content: center;
}

.related-card-anfaengliche-investitionsschritte {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.related-image-anfaengliche-investitionsschritte {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-anfaengliche-investitionsschritte img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-anfaengliche-investitionsschritte {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-anfaengliche-investitionsschritte {
  color: var(--color-text-primary) !important;
  font-size: 1.125rem;
  font-weight: 600;
}

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

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

@media (min-width: 768px) {
  .hero-section-anfaengliche-investitionsschritte,
  .intro-section-anfaengliche-investitionsschritte,
  .foundation-section-anfaengliche-investitionsschritte,
  .strategy-section-anfaengliche-investitionsschritte,
  .essentials-section-anfaengliche-investitionsschritte,
  .conclusion-section-anfaengliche-investitionsschritte,
  .disclaimer-section-anfaengliche-investitionsschritte,
  .related-section-anfaengliche-investitionsschritte {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-anfaengliche-investitionsschritte,
  .intro-section-anfaengliche-investitionsschritte,
  .foundation-section-anfaengliche-investitionsschritte,
  .strategy-section-anfaengliche-investitionsschritte,
  .essentials-section-anfaengliche-investitionsschritte,
  .conclusion-section-anfaengliche-investitionsschritte,
  .disclaimer-section-anfaengliche-investitionsschritte,
  .related-section-anfaengliche-investitionsschritte {
    padding: 6rem 0;
  }
}

.main-gebuehren-handelskosten {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-gebuehren-handelskosten {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-gebuehren-handelskosten {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
}

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

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

.breadcrumbs-gebuehren-handelskosten span {
  color: var(--color-text-muted);
}

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

.hero-text-wrapper-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

.article-meta-gebuehren-handelskosten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-gebuehren-handelskosten i {
  font-size: 0.875rem;
}

.hero-image-wrapper-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.intro-section-gebuehren-handelskosten {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-gebuehren-handelskosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-description-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.intro-image-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-wrapper-gebuehren-handelskosten {
    flex-direction: column;
  }
  
  .intro-text-gebuehren-handelskosten,
  .intro-image-gebuehren-handelskosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-1-gebuehren-handelskosten {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

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

.content-text-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-heading-gebuehren-handelskosten {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
}

.content-text-body-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.content-list-gebuehren-handelskosten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.content-list-item-gebuehren-handelskosten {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
  padding-left: 0;
}

.content-list-item-gebuehren-handelskosten::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  color: #059669;
  flex-shrink: 0;
  margin-top: 0;
}

.content-list-item-gebuehren-handelskosten i {
  color: #059669;
}

.content-image-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-img-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.content-section-2-gebuehren-handelskosten {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-reverse-gebuehren-handelskosten {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.content-image-left-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-img-left-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.content-text-right-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-box-gebuehren-handelskosten {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.highlight-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-reverse-gebuehren-handelskosten {
    flex-direction: column;
  }
  
  .content-image-left-gebuehren-handelskosten,
  .content-text-right-gebuehren-handelskosten {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.content-section-3-gebuehren-handelskosten {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.features-grid-gebuehren-handelskosten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.feature-card-gebuehren-handelskosten {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-card-gebuehren-handelskosten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.feature-title-gebuehren-handelskosten {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1a1a1a;
}

.feature-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.feature-image-wrapper-gebuehren-handelskosten {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-image-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.strategy-section-gebuehren-handelskosten {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.steps-container-gebuehren-handelskosten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-gebuehren-handelskosten {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

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

.step-title-gebuehren-handelskosten {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1a1a1a;
}

.step-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .step-item-gebuehren-handelskosten {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number-gebuehren-handelskosten {
    min-width: auto;
  }
}

.impact-section-gebuehren-handelskosten {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.impact-content-wrapper-gebuehren-handelskosten {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.impact-text-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-title-gebuehren-handelskosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.impact-quote-gebuehren-handelskosten {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  margin: 0;
}

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

.quote-author-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  font-style: normal;
}

.impact-text-body-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.impact-image-gebuehren-handelskosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-img-gebuehren-handelskosten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .impact-content-wrapper-gebuehren-handelskosten {
    flex-direction: column;
  }
  
  .impact-text-gebuehren-handelskosten,
  .impact-image-gebuehren-handelskosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gebuehren-handelskosten {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-title-gebuehren-handelskosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  text-align: center;
}

.conclusion-boxes-gebuehren-handelskosten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-box-gebuehren-handelskosten {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conclusion-box-title-gebuehren-handelskosten {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1a1a1a;
}

.conclusion-box-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.conclusion-final-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(5, 150, 105, 0.05);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .conclusion-box-gebuehren-handelskosten {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-gebuehren-handelskosten {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-gebuehren-handelskosten {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-gebuehren-handelskosten {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #78350f;
}

.related-section-gebuehren-handelskosten {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-gebuehren-handelskosten {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-gebuehren-handelskosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-gebuehren-handelskosten {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-gebuehren-handelskosten:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-gebuehren-handelskosten {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-gebuehren-handelskosten {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-gebuehren-handelskosten {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.related-card-text-gebuehren-handelskosten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
  flex: 1;
}

.related-card-link-gebuehren-handelskosten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-card-link-gebuehren-handelskosten:hover {
  color: #047857;
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .section-tag-gebuehren-handelskosten {
    font-size: 0.875rem;
  }
  
  .section-title-gebuehren-handelskosten {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title-gebuehren-handelskosten {
    font-size: 2.75rem;
  }
}

.main-optionen-derivate-erklaert {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-wrapper-optionen-derivate-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-image-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-optionen-derivate-erklaert {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle-optionen-derivate-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.breadcrumbs-optionen-derivate-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumbs-optionen-derivate-erklaert a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-optionen-derivate-erklaert a:hover {
  opacity: 0.7;
}

.breadcrumbs-optionen-derivate-erklaert span {
  color: var(--color-text-muted);
}

.article-meta-optionen-derivate-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

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

.meta-badge-optionen-derivate-erklaert i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-wrapper-optionen-derivate-erklaert {
    flex-direction: column;
  }
  
  .hero-content-optionen-derivate-erklaert,
  .hero-image-optionen-derivate-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-optionen-derivate-erklaert {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-optionen-derivate-erklaert {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.intro-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
}

.intro-content-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.intro-highlight-optionen-derivate-erklaert {
  color: var(--color-primary);
  font-weight: 500;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  font-style: italic;
}

@media (max-width: 768px) {
  .intro-wrapper-optionen-derivate-erklaert {
    flex-direction: column;
  }
  
  .intro-text-optionen-derivate-erklaert,
  .intro-image-optionen-derivate-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-optionen-derivate-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-optionen-derivate-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-image-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-optionen-derivate-erklaert {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.content-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
}

.content-body-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.content-subheading-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
}

.concept-highlight-optionen-derivate-erklaert {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.highlight-text-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-optionen-derivate-erklaert {
    flex-direction: column;
  }
  
  .content-text-optionen-derivate-erklaert,
  .content-image-optionen-derivate-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-optionen-derivate-erklaert {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-optionen-derivate-erklaert {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.features-subtitle-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-optionen-derivate-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  justify-content: center;
}

.features-card-optionen-derivate-erklaert {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

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

.features-card-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.3;
}

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

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

.strategy-section-optionen-derivate-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-wrapper-optionen-derivate-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-image-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.strategy-img-optionen-derivate-erklaert {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.strategy-text-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
}

.strategy-body-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.strategy-subheading-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
}

.strategy-highlight-optionen-derivate-erklaert {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary) !important;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-wrapper-optionen-derivate-erklaert {
    flex-direction: column;
  }
  
  .strategy-image-optionen-derivate-erklaert,
  .strategy-text-optionen-derivate-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.quote-section-optionen-derivate-erklaert {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-optionen-derivate-erklaert {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-text-optionen-derivate-erklaert {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-primary) !important;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-optionen-derivate-erklaert {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

.advanced-section-optionen-derivate-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-optionen-derivate-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-text-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.advanced-image-optionen-derivate-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-optionen-derivate-erklaert {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.advanced-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
}

.advanced-body-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.advanced-subheading-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
}

.advanced-list-optionen-derivate-erklaert {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.list-item-optionen-derivate-erklaert {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.list-item-optionen-derivate-erklaert::before {
  content: '';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .advanced-wrapper-optionen-derivate-erklaert {
    flex-direction: column;
  }
  
  .advanced-text-optionen-derivate-erklaert,
  .advanced-image-optionen-derivate-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-optionen-derivate-erklaert {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-optionen-derivate-erklaert {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.conclusion-highlight-optionen-derivate-erklaert {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.highlight-box-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  font-style: italic;
}

.conclusion-cta-optionen-derivate-erklaert {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-optionen-derivate-erklaert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.btn-primary-optionen-derivate-erklaert:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.25);
}

.disclaimer-section-optionen-derivate-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-optionen-derivate-erklaert {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  line-height: 1.7;
}

.related-section-optionen-derivate-erklaert {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 700;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

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

.related-card-optionen-derivate-erklaert {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.related-image-optionen-derivate-erklaert {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-optionen-derivate-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-optionen-derivate-erklaert {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.related-card-title-optionen-derivate-erklaert {
  color: var(--color-text-primary) !important;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.3;
}

.related-card-text-optionen-derivate-erklaert {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-optionen-derivate-erklaert {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-link-optionen-derivate-erklaert:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-optionen-derivate-erklaert {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-optionen-derivate-erklaert,
  .content-section-optionen-derivate-erklaert,
  .strategy-section-optionen-derivate-erklaert,
  .advanced-section-optionen-derivate-erklaert,
  .features-section-optionen-derivate-erklaert,
  .quote-section-optionen-derivate-erklaert,
  .conclusion-section-optionen-derivate-erklaert,
  .disclaimer-section-optionen-derivate-erklaert,
  .related-section-optionen-derivate-erklaert {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-optionen-derivate-erklaert,
  .intro-section-optionen-derivate-erklaert,
  .content-section-optionen-derivate-erklaert,
  .strategy-section-optionen-derivate-erklaert,
  .advanced-section-optionen-derivate-erklaert,
  .features-section-optionen-derivate-erklaert,
  .quote-section-optionen-derivate-erklaert,
  .conclusion-section-optionen-derivate-erklaert,
  .disclaimer-section-optionen-derivate-erklaert,
  .related-section-optionen-derivate-erklaert {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

.main-intraday-trading-grundlagen {
  width: 100%;
}

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

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

.breadcrumbs-intraday-trading-grundlagen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumb-link-intraday-trading-grundlagen {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb-link-intraday-trading-grundlagen:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-intraday-trading-grundlagen {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-intraday-trading-grundlagen {
  color: #4b5563;
  font-weight: 600;
}

.hero-content-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-intraday-trading-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-intraday-trading-grundlagen i {
  font-size: 0.875rem;
}

.hero-image-wrapper-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-intraday-trading-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats-intraday-trading-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.stat-item-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-intraday-trading-grundlagen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-intraday-trading-grundlagen {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-intraday-trading-grundlagen {
    flex-direction: column;
  }

  .hero-text-wrapper-intraday-trading-grundlagen,
  .hero-image-wrapper-intraday-trading-grundlagen {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-intraday-trading-grundlagen {
    justify-content: center;
  }
}

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

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

.intro-text-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-intraday-trading-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-description-intraday-trading-grundlagen:last-of-type {
  margin-bottom: 0;
}

.intro-image-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-intraday-trading-grundlagen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-wrapper-intraday-trading-grundlagen {
    flex-direction: column;
  }

  .intro-text-intraday-trading-grundlagen,
  .intro-image-intraday-trading-grundlagen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.core-concepts-section-intraday-trading-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-intraday-trading-grundlagen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-intraday-trading-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-intraday-trading-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.concepts-wrapper-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.concepts-text-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-list-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.concept-item-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.concept-number-intraday-trading-grundlagen {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.concept-content-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.concept-title-intraday-trading-grundlagen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.concept-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.concepts-image-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.concepts-img-intraday-trading-grundlagen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .concepts-wrapper-intraday-trading-grundlagen {
    flex-direction: column;
  }

  .concepts-text-intraday-trading-grundlagen,
  .concepts-image-intraday-trading-grundlagen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.strategies-section-intraday-trading-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-wrapper-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-image-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-intraday-trading-grundlagen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.strategies-text-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-cards-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-card-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 0.3s ease;
}

.strategy-card-intraday-trading-grundlagen:hover {
  background: #f0fdf4;
  transform: translateX(4px);
}

.strategy-title-intraday-trading-grundlagen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.strategy-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategies-wrapper-intraday-trading-grundlagen {
    flex-direction: column-reverse;
  }

  .strategies-image-intraday-trading-grundlagen,
  .strategies-text-intraday-trading-grundlagen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.risk-management-section-intraday-trading-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.risk-wrapper-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.risk-text-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.risk-title-intraday-trading-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.risk-description-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.risk-points-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.risk-point-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.risk-point-icon-intraday-trading-grundlagen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.risk-point-content-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.risk-point-title-intraday-trading-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.risk-point-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.risk-image-intraday-trading-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.risk-img-intraday-trading-grundlagen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .risk-wrapper-intraday-trading-grundlagen {
    flex-direction: column;
  }

  .risk-text-intraday-trading-grundlagen,
  .risk-image-intraday-trading-grundlagen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.practical-section-intraday-trading-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-steps-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-step-intraday-trading-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

.step-content-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-intraday-trading-grundlagen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.step-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.quote-section-intraday-trading-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-intraday-trading-grundlagen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.quote-author-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

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

.conclusion-content-intraday-trading-grundlagen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-intraday-trading-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-cta-intraday-trading-grundlagen {
  text-align: center;
  margin-top: 2rem;
}

.btn-primary-intraday-trading-grundlagen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-intraday-trading-grundlagen:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.25);
}

.disclaimer-section-intraday-trading-grundlagen {
  background: #fef2f2;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-intraday-trading-grundlagen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #ef4444;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.disclaimer-title-intraday-trading-grundlagen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.disclaimer-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.related-title-intraday-trading-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
}

.related-subtitle-intraday-trading-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

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

.related-card-intraday-trading-grundlagen:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-intraday-trading-grundlagen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-intraday-trading-grundlagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-intraday-trading-grundlagen:hover .related-img-intraday-trading-grundlagen {
  transform: scale(1.05);
}

.related-card-content-intraday-trading-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-intraday-trading-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-intraday-trading-grundlagen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.main-gemeinschaftliche-lerngruppen {
  width: 100%;
}

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

.hero-section-gemeinschaftliche-lerngruppen {
  background: #f9fafb;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-gemeinschaftliche-lerngruppen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-gemeinschaftliche-lerngruppen a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs-gemeinschaftliche-lerngruppen a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-gemeinschaftliche-lerngruppen span {
  color: #cbd5e1;
}

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

.hero-text-wrapper-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-gemeinschaftliche-lerngruppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-gemeinschaftliche-lerngruppen i {
  color: var(--color-primary);
}

.hero-image-wrapper-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gemeinschaftliche-lerngruppen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-gemeinschaftliche-lerngruppen {
    flex-direction: column;
  }

  .hero-text-wrapper-gemeinschaftliche-lerngruppen,
  .hero-image-wrapper-gemeinschaftliche-lerngruppen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.introduction-wrapper-gemeinschaftliche-lerngruppen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.introduction-text-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.introduction-text-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.introduction-image-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-gemeinschaftliche-lerngruppen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-gemeinschaftliche-lerngruppen {
    flex-direction: column;
  }

  .introduction-text-gemeinschaftliche-lerngruppen,
  .introduction-image-gemeinschaftliche-lerngruppen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.benefits-header-gemeinschaftliche-lerngruppen {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.benefits-subtitle-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card-gemeinschaftliche-lerngruppen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.benefit-card-gemeinschaftliche-lerngruppen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.benefit-card-text-gemeinschaftliche-lerngruppen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

.structure-wrapper-gemeinschaftliche-lerngruppen {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
}

.structure-image-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-img-gemeinschaftliche-lerngruppen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.structure-content-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.structure-text-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.structure-steps-gemeinschaftliche-lerngruppen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-step-gemeinschaftliche-lerngruppen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.structure-step-number-gemeinschaftliche-lerngruppen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-gemeinschaftliche-lerngruppen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.structure-step-title-gemeinschaftliche-lerngruppen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.structure-step-text-gemeinschaftliche-lerngruppen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .structure-wrapper-gemeinschaftliche-lerngruppen {
    flex-direction: column;
  }

  .structure-image-gemeinschaftliche-lerngruppen,
  .structure-content-gemeinschaftliche-lerngruppen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-gemeinschaftliche-lerngruppen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-gemeinschaftliche-lerngruppen {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.best-practices-subtitle-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.featured-quote-gemeinschaftliche-lerngruppen {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  margin: 2rem 0 3rem 0;
  border-radius: 8px;
}

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

.quote-author-gemeinschaftliche-lerngruppen {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

.practices-text-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-subheading-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.practices-description-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.practices-image-gemeinschaftliche-lerngruppen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-img-gemeinschaftliche-lerngruppen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .practices-content-gemeinschaftliche-lerngruppen {
    flex-direction: column;
  }

  .practices-text-gemeinschaftliche-lerngruppen,
  .practices-image-gemeinschaftliche-lerngruppen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-header-gemeinschaftliche-lerngruppen {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.tools-subtitle-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.tool-card-gemeinschaftliche-lerngruppen {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tool-card-gemeinschaftliche-lerngruppen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

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

.tool-card-title-gemeinschaftliche-lerngruppen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.tool-card-text-gemeinschaftliche-lerngruppen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.cta-section-gemeinschaftliche-lerngruppen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary-light));
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-gemeinschaftliche-lerngruppen {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button-gemeinschaftliche-lerngruppen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 10px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.disclaimer-content-gemeinschaftliche-lerngruppen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-gemeinschaftliche-lerngruppen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.disclaimer-text-gemeinschaftliche-lerngruppen {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

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

.related-header-gemeinschaftliche-lerngruppen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-gemeinschaftliche-lerngruppen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-gemeinschaftliche-lerngruppen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-gemeinschaftliche-lerngruppen {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-gemeinschaftliche-lerngruppen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-gemeinschaftliche-lerngruppen {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.related-card-content-gemeinschaftliche-lerngruppen {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-gemeinschaftliche-lerngruppen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-gemeinschaftliche-lerngruppen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .hero-section-gemeinschaftliche-lerngruppen {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .benefits-section-gemeinschaftliche-lerngruppen,
  .structure-section-gemeinschaftliche-lerngruppen,
  .best-practices-section-gemeinschaftliche-lerngruppen,
  .tools-section-gemeinschaftliche-lerngruppen,
  .related-section-gemeinschaftliche-lerngruppen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

  .benefits-section-gemeinschaftliche-lerngruppen,
  .structure-section-gemeinschaftliche-lerngruppen,
  .best-practices-section-gemeinschaftliche-lerngruppen,
  .tools-section-gemeinschaftliche-lerngruppen,
  .related-section-gemeinschaftliche-lerngruppen {
    padding: 6rem 0;
  }
}

.main-handelsjournal-fuehren {
  width: 100%;
}

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

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

.hero-text-wrapper-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-wrapper-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-handelsjournal-fuehren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

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

.hero-meta-handelsjournal-fuehren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.hero-stats-handelsjournal-fuehren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 3.5rem);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-handelsjournal-fuehren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-handelsjournal-fuehren {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-handelsjournal-fuehren {
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumbs-handelsjournal-fuehren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-handelsjournal-fuehren a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-handelsjournal-fuehren a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-handelsjournal-fuehren span {
  color: #9ca3af;
}

@media (max-width: 768px) {
  .hero-content-handelsjournal-fuehren {
    flex-direction: column;
  }

  .hero-text-wrapper-handelsjournal-fuehren,
  .hero-image-wrapper-handelsjournal-fuehren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-handelsjournal-fuehren {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

.intro-text-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-image-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-handelsjournal-fuehren img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.intro-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .intro-wrapper-handelsjournal-fuehren {
    flex-direction: column;
  }

  .intro-text-handelsjournal-fuehren,
  .intro-image-handelsjournal-fuehren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.section-header-handelsjournal-fuehren {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.process-steps-handelsjournal-fuehren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-handelsjournal-fuehren {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 0.3s ease;
}

.process-step-handelsjournal-fuehren:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

.process-step-content-handelsjournal-fuehren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.process-step-text-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-handelsjournal-fuehren {
    flex-direction: column;
    gap: 1rem;
  }
}

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

.features-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.features-card-handelsjournal-fuehren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.features-card-handelsjournal-fuehren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

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

.features-card-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.features-card-text-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.content-section-handelsjournal-fuehren {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-image-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-handelsjournal-fuehren img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-paragraph-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.content-list-handelsjournal-fuehren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-list-item-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.content-list-item-handelsjournal-fuehren::before {
  content: '';
  color: #059669;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.list-label-handelsjournal-fuehren {
  display: inline;
}

@media (max-width: 768px) {
  .content-wrapper-handelsjournal-fuehren {
    flex-direction: column;
  }

  .content-text-handelsjournal-fuehren,
  .content-image-handelsjournal-fuehren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-handelsjournal-fuehren {
  background: #059669;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-handelsjournal-fuehren {
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border: none;
  margin: 0;
}

.quote-text-handelsjournal-fuehren {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author-handelsjournal-fuehren {
  color: #d1fae5;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

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

.implementation-wrapper-handelsjournal-fuehren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-handelsjournal-fuehren img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.implementation-text-handelsjournal-fuehren {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.implementation-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.implementation-paragraph-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .implementation-wrapper-handelsjournal-fuehren {
    flex-direction: column;
  }

  .implementation-image-handelsjournal-fuehren,
  .implementation-text-handelsjournal-fuehren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-handelsjournal-fuehren {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-paragraph-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-highlight-handelsjournal-fuehren {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.highlight-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-list-handelsjournal-fuehren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-item-handelsjournal-fuehren::before {
  content: '';
  color: #059669;
  font-weight: bold;
  flex-shrink: 0;
}

.conclusion-cta-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-weight: 500;
  padding: 1.5rem;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 8px;
}

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

.disclaimer-box-handelsjournal-fuehren {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.disclaimer-title-handelsjournal-fuehren {
  color: #92400e;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-handelsjournal-fuehren {
  color: #78350f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.related-section-handelsjournal-fuehren {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.related-card-handelsjournal-fuehren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-handelsjournal-fuehren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.related-card-image-handelsjournal-fuehren {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-handelsjournal-fuehren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-handelsjournal-fuehren {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-handelsjournal-fuehren {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-handelsjournal-fuehren {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-handelsjournal-fuehren {
  color: #059669;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-link-handelsjournal-fuehren:hover {
  color: #047857;
  transform: translateX(4px);
}

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

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

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

.main-sektor-analyse-branchentrends {
  width: 100%;
}

.hero-section-sektor-analyse-branchentrends {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.hero-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-sektor-analyse-branchentrends {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-sektor-analyse-branchentrends a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sektor-analyse-branchentrends a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-sektor-analyse-branchentrends span {
  color: #9ca3af;
}

.hero-content-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-wrapper-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-sektor-analyse-branchentrends {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.meta-badge-sektor-analyse-branchentrends i {
  font-size: 0.875rem;
}

.hero-image-wrapper-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-sektor-analyse-branchentrends {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-sektor-analyse-branchentrends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

.stat-number-sektor-analyse-branchentrends {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-sektor-analyse-branchentrends {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  text-align: center;
}

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

.intro-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.intro-image-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-content-sektor-analyse-branchentrends {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-section-one-sektor-analyse-branchentrends {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-description-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content-steps-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.step-number-sektor-analyse-branchentrends {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.step-text-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-image-sektor-analyse-branchentrends {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-content-sektor-analyse-branchentrends {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-section-two-sektor-analyse-branchentrends {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-two-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-reversed-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sector-list-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.sector-item-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  padding-left: 0;
  margin-left: 0;
}

.sector-item-sektor-analyse-branchentrends strong {
  color: #111827;
  font-weight: 600;
}

.features-section-sektor-analyse-branchentrends {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.features-header-sektor-analyse-branchentrends {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.features-cards-sektor-analyse-branchentrends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.features-card-sektor-analyse-branchentrends {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.features-card-sektor-analyse-branchentrends:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.features-card-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.features-card-text-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-section-three-sektor-analyse-branchentrends {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-three-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-sektor-analyse-branchentrends {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-author-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: 0.875rem;
  font-style: normal;
}

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

.conclusion-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-sektor-analyse-branchentrends {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-steps-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.conclusion-step-sektor-analyse-branchentrends {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.conclusion-step-sektor-analyse-branchentrends .step-number-sektor-analyse-branchentrends {
  font-size: 2rem;
  color: #059669;
  min-width: 45px;
}

.conclusion-step-sektor-analyse-branchentrends .step-title-sektor-analyse-branchentrends {
  color: #111827;
}

.conclusion-step-sektor-analyse-branchentrends .step-text-sektor-analyse-branchentrends {
  color: #4b5563;
}

.cta-box-sektor-analyse-branchentrends {
  background: linear-gradient(135deg, #059669, #0d9488);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-sektor-analyse-branchentrends {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text-sektor-analyse-branchentrends {
  color: #f0f0f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-cta-sektor-analyse-branchentrends {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.btn-cta-sektor-analyse-branchentrends:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-sektor-analyse-branchentrends {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-sektor-analyse-branchentrends {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.related-section-sektor-analyse-branchentrends .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-sektor-analyse-branchentrends {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-sektor-analyse-branchentrends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-sektor-analyse-branchentrends {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.related-card-sektor-analyse-branchentrends:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.related-card-image-sektor-analyse-branchentrends {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-image-sektor-analyse-branchentrends img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-sektor-analyse-branchentrends:hover .related-card-image-sektor-analyse-branchentrends img {
  transform: scale(1.05);
}

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

.related-card-title-sektor-analyse-branchentrends {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-sektor-analyse-branchentrends {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-sektor-analyse-branchentrends,
  .intro-wrapper-sektor-analyse-branchentrends,
  .content-wrapper-sektor-analyse-branchentrends,
  .content-wrapper-reversed-sektor-analyse-branchentrends {
    flex-direction: column;
  }

  .hero-text-wrapper-sektor-analyse-branchentrends,
  .hero-image-wrapper-sektor-analyse-branchentrends,
  .intro-text-sektor-analyse-branchentrends,
  .intro-image-sektor-analyse-branchentrends,
  .content-text-sektor-analyse-branchentrends,
  .content-image-sektor-analyse-branchentrends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-sektor-analyse-branchentrends {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-cards-sektor-analyse-branchentrends {
    flex-direction: column;
  }

  .features-card-sektor-analyse-branchentrends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-sektor-analyse-branchentrends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-step-sektor-analyse-branchentrends {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-section-sektor-analyse-branchentrends {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }

  .breadcrumbs-sektor-analyse-branchentrends {
    font-size: 0.75rem;
  }

  .article-meta-sektor-analyse-branchentrends {
    gap: 0.75rem;
  }

  .meta-badge-sektor-analyse-branchentrends {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .step-item-sektor-analyse-branchentrends {
    gap: 1rem;
    padding: 1rem;
  }

  .step-number-sektor-analyse-branchentrends {
    min-width: 40px;
  }

  .featured-quote-sektor-analyse-branchentrends {
    padding: 1rem 1.5rem;
  }
}

.main-altersvorsorge-investitionen {
  width: 100%;
}

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

.breadcrumbs-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-altersvorsorge-investitionen a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-altersvorsorge-investitionen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-altersvorsorge-investitionen span {
  color: #9ca3af;
}

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

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

.hero-text-wrapper-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-altersvorsorge-investitionen {
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.hero-meta-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.meta-badge-altersvorsorge-investitionen i {
  color: #059669;
}

.hero-image-wrapper-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-altersvorsorge-investitionen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: #f9fafb;
  border-radius: 12px;
}

.stat-item-altersvorsorge-investitionen {
  flex: 1 1 150px;
  text-align: center;
}

.stat-number-altersvorsorge-investitionen {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
}

.stat-label-altersvorsorge-investitionen {
  display: block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .hero-text-wrapper-altersvorsorge-investitionen,
  .hero-image-wrapper-altersvorsorge-investitionen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .stat-item-altersvorsorge-investitionen {
    flex: 1 1 100%;
  }
}

.intro-section-altersvorsorge-investitionen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-altersvorsorge-investitionen {
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-altersvorsorge-investitionen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .intro-text-altersvorsorge-investitionen,
  .intro-image-altersvorsorge-investitionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.foundation-header-altersvorsorge-investitionen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.foundation-title-altersvorsorge-investitionen {
  color: #111827;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.foundation-subtitle-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.foundation-cards-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.foundation-card-altersvorsorge-investitionen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.foundation-card-altersvorsorge-investitionen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

.foundation-card-title-altersvorsorge-investitionen {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.125rem;
}

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

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

.strategy-section-altersvorsorge-investitionen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-wrapper-altersvorsorge-investitionen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-text-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-altersvorsorge-investitionen {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.strategy-description-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.strategy-highlights-altersvorsorge-investitionen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-altersvorsorge-investitionen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.highlight-item-altersvorsorge-investitionen i {
  color: #059669;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.strategy-image-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-img-altersvorsorge-investitionen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategy-wrapper-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .strategy-text-altersvorsorge-investitionen,
  .strategy-image-altersvorsorge-investitionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.phases-header-altersvorsorge-investitionen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.phases-title-altersvorsorge-investitionen {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.phases-steps-altersvorsorge-investitionen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phases-step-altersvorsorge-investitionen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 0.3s ease;
}

.phases-step-altersvorsorge-investitionen:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.phases-step-content-altersvorsorge-investitionen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

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

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

.practical-image-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-img-altersvorsorge-investitionen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practical-text-altersvorsorge-investitionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-altersvorsorge-investitionen {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.practical-description-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practical-quote-altersvorsorge-investitionen {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 1.5rem 0;
  border-radius: 8px;
}

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

.practical-quote-author-altersvorsorge-investitionen {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

@media (max-width: 768px) {
  .practical-wrapper-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .practical-image-altersvorsorge-investitionen,
  .practical-text-altersvorsorge-investitionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.mistakes-header-altersvorsorge-investitionen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.mistakes-title-altersvorsorge-investitionen {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mistakes-subtitle-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.mistakes-cards-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.mistakes-card-altersvorsorge-investitionen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mistakes-card-altersvorsorge-investitionen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ef4444;
}

.mistakes-card-icon-altersvorsorge-investitionen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 10px;
  font-size: 1.5rem;
}

.mistakes-card-title-altersvorsorge-investitionen {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.125rem;
}

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

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

.conclusion-section-altersvorsorge-investitionen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-altersvorsorge-investitionen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-altersvorsorge-investitionen {
  color: #111827;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.conclusion-description-altersvorsorge-investitionen {
  color: #4b5563;
  text-align: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-highlights-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
}

.conclusion-highlight-altersvorsorge-investitionen {
  flex: 1 1 250px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.conclusion-highlight-title-altersvorsorge-investitionen {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.conclusion-highlight-text-altersvorsorge-investitionen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.conclusion-cta-altersvorsorge-investitionen {
  text-align: center;
}

.conclusion-btn-altersvorsorge-investitionen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.conclusion-btn-altersvorsorge-investitionen:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

@media (max-width: 768px) {
  .conclusion-highlights-altersvorsorge-investitionen {
    flex-direction: column;
  }

  .conclusion-highlight-altersvorsorge-investitionen {
    flex: 1 1 100%;
  }
}

.disclaimer-section-altersvorsorge-investitionen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-altersvorsorge-investitionen {
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0fdf4;
  border-radius: 12px;
  border-left: 4px solid #059669;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon-altersvorsorge-investitionen {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  border-radius: 50%;
  color: #059669;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.disclaimer-text-altersvorsorge-investitionen {
  flex: 1;
}

.disclaimer-title-altersvorsorge-investitionen {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.disclaimer-body-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.related-section-altersvorsorge-investitionen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-altersvorsorge-investitionen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-altersvorsorge-investitionen {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.related-subtitle-altersvorsorge-investitionen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.related-cards-altersvorsorge-investitionen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-altersvorsorge-investitionen {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-altersvorsorge-investitionen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-altersvorsorge-investitionen {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

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

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

.related-card-link-altersvorsorge-investitionen {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  transition: color 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-altersvorsorge-investitionen:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-stats-altersvorsorge-investitionen {
    gap: 3rem;
  }

  .foundation-card-altersvorsorge-investitionen {
    flex: 1 1 280px;
  }

  .mistakes-card-altersvorsorge-investitionen {
    flex: 1 1 280px;
  }

  .related-card-altersvorsorge-investitionen {
    flex: 1 1 320px;
  }
}

@media (min-width: 1024px) {
  .hero-stats-altersvorsorge-investitionen {
    gap: 4rem;
  }
}

.main-finanzielle-bildung-vertiefen {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-text-wrapper-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-image-wrapper-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.breadcrumbs-finanzielle-bildung-vertiefen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

.breadcrumbs-finanzielle-bildung-vertiefen a {
  color: #059669;
  transition: color 0.3s ease;
}

.breadcrumbs-finanzielle-bildung-vertiefen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-finanzielle-bildung-vertiefen span {
  color: #9ca3af;
}

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

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

.hero-meta-finanzielle-bildung-vertiefen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-finanzielle-bildung-vertiefen i {
  color: #059669;
}

.hero-stats-finanzielle-bildung-vertiefen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
}

.stat-item-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-finanzielle-bildung-vertiefen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-finanzielle-bildung-vertiefen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #4b5563;
  opacity: 0.8;
}

.hero-image-finanzielle-bildung-vertiefen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-text-wrapper-finanzielle-bildung-vertiefen,
  .hero-image-wrapper-finanzielle-bildung-vertiefen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }
}

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

.intro-wrapper-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.intro-text-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.intro-image-wrapper-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.intro-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-finanzielle-bildung-vertiefen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-text-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.intro-image-finanzielle-bildung-vertiefen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-text-finanzielle-bildung-vertiefen,
  .intro-image-wrapper-finanzielle-bildung-vertiefen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }
}

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

.section-header-finanzielle-bildung-vertiefen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.section-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item-finanzielle-bildung-vertiefen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.step-content-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

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

.concepts-wrapper-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.concepts-text-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.concepts-image-wrapper-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.concepts-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.concepts-description-finanzielle-bildung-vertiefen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.concepts-list-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.concept-item-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.concept-item-finanzielle-bildung-vertiefen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.concept-item-finanzielle-bildung-vertiefen strong {
  color: #111827;
}

.concepts-image-finanzielle-bildung-vertiefen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .concepts-text-finanzielle-bildung-vertiefen,
  .concepts-image-wrapper-finanzielle-bildung-vertiefen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .concepts-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }
}

.benefits-section-finanzielle-bildung-vertiefen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-grid-finanzielle-bildung-vertiefen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-finanzielle-bildung-vertiefen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card-finanzielle-bildung-vertiefen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.benefit-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.benefit-text-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

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

.quote-section-finanzielle-bildung-vertiefen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-finanzielle-bildung-vertiefen {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 0;
  border-radius: 0 8px 8px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-finanzielle-bildung-vertiefen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author-finanzielle-bildung-vertiefen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

.resources-section-finanzielle-bildung-vertiefen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-wrapper-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.resources-image-wrapper-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.resources-text-finanzielle-bildung-vertiefen {
  flex: 1 1 350px;
  max-width: 50%;
}

.resources-image-finanzielle-bildung-vertiefen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resources-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.resources-description-finanzielle-bildung-vertiefen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.resources-highlight-finanzielle-bildung-vertiefen {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.resources-highlight-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.resources-list-finanzielle-bildung-vertiefen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.resource-item-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.resource-item-finanzielle-bildung-vertiefen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

@media (max-width: 768px) {
  .resources-image-wrapper-finanzielle-bildung-vertiefen,
  .resources-text-finanzielle-bildung-vertiefen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resources-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }
}

.cta-section-finanzielle-bildung-vertiefen {
  background: #059669;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-content-finanzielle-bildung-vertiefen {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-finanzielle-bildung-vertiefen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-description-finanzielle-bildung-vertiefen {
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-finanzielle-bildung-vertiefen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-finanzielle-bildung-vertiefen:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.related-header-finanzielle-bildung-vertiefen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

.related-card-finanzielle-bildung-vertiefen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-finanzielle-bildung-vertiefen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-image-wrapper-finanzielle-bildung-vertiefen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-finanzielle-bildung-vertiefen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-finanzielle-bildung-vertiefen:hover .related-card-image-finanzielle-bildung-vertiefen {
  transform: scale(1.05);
}

.related-card-content-finanzielle-bildung-vertiefen {
  padding: clamp(1.25rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-finanzielle-bildung-vertiefen {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.related-card-link-finanzielle-bildung-vertiefen {
  color: #059669;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-finanzielle-bildung-vertiefen:hover {
  color: #047857;
  text-decoration: underline;
}

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

.disclaimer-section-finanzielle-bildung-vertiefen {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-finanzielle-bildung-vertiefen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  max-width: 800px;
  margin: 0 auto;
}

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

.disclaimer-text-finanzielle-bildung-vertiefen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-finanzielle-bildung-vertiefen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }

  .intro-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }

  .concepts-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }

  .resources-wrapper-finanzielle-bildung-vertiefen {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-stats-finanzielle-bildung-vertiefen {
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .stat-number-finanzielle-bildung-vertiefen {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
}

.main-regulierung-rechtliche-aspekte {
  width: 100%;
  background: #f9fafb;
}

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

.hero-section-regulierung-rechtliche-aspekte {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
  color: #64748b;
  margin-bottom: 2rem;
}

.breadcrumbs-regulierung-rechtliche-aspekte a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-regulierung-rechtliche-aspekte a:hover {
  color: #047857;
  text-decoration: underline;
}

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

.hero-text-block-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-regulierung-rechtliche-aspekte i {
  color: #059669;
}

.hero-stats-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-item-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-regulierung-rechtliche-aspekte {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-regulierung-rechtliche-aspekte {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-block-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-regulierung-rechtliche-aspekte {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

.intro-section-regulierung-rechtliche-aspekte {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.intro-image-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-regulierung-rechtliche-aspekte {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-regulierung-rechtliche-aspekte {
    flex-direction: column;
  }
  
  .intro-text-regulierung-rechtliche-aspekte,
  .intro-image-regulierung-rechtliche-aspekte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.regulatory-bodies-section-regulierung-rechtliche-aspekte {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.section-header-regulierung-rechtliche-aspekte {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.bodies-grid-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.body-card-regulierung-rechtliche-aspekte {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.body-card-regulierung-rechtliche-aspekte:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

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

.body-card-title-regulierung-rechtliche-aspekte {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.body-card-text-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

.body-card-list-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.body-list-item-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  color: #4b5563;
  padding-left: 1.5rem;
  position: relative;
}

.body-list-item-regulierung-rechtliche-aspekte::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

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

.legal-framework-section-regulierung-rechtliche-aspekte {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.framework-content-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.framework-text-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.framework-description-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
}

.framework-steps-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.framework-step-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.framework-step-number-regulierung-rechtliche-aspekte {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  min-width: 50px;
}

.framework-step-content-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.framework-step-title-regulierung-rechtliche-aspekte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.framework-step-text-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.framework-image-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-img-regulierung-rechtliche-aspekte {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .framework-content-regulierung-rechtliche-aspekte {
    flex-direction: column;
  }
  
  .framework-text-regulierung-rechtliche-aspekte,
  .framework-image-regulierung-rechtliche-aspekte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.requirements-section-regulierung-rechtliche-aspekte {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.requirements-content-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.requirements-text-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-heading-regulierung-rechtliche-aspekte {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.requirements-list-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.requirement-icon-regulierung-rechtliche-aspekte {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.requirement-text-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.requirement-title-regulierung-rechtliche-aspekte {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
}

.requirement-desc-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.requirements-image-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-img-regulierung-rechtliche-aspekte {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .requirements-content-regulierung-rechtliche-aspekte {
    flex-direction: column;
  }
  
  .requirements-text-regulierung-rechtliche-aspekte,
  .requirements-image-regulierung-rechtliche-aspekte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.protection-section-regulierung-rechtliche-aspekte {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.protection-content-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.protection-text-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-intro-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
}

.protection-quote-regulierung-rechtliche-aspekte {
  padding: 2rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.protection-quote-text-regulierung-rechtliche-aspekte {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 1rem;
}

.protection-quote-author-regulierung-rechtliche-aspekte {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.protection-subheading-regulierung-rechtliche-aspekte {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 2rem 0 1rem 0;
}

.protection-pillars-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-regulierung-rechtliche-aspekte {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.pillar-title-regulierung-rechtliche-aspekte {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.pillar-text-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.protection-image-regulierung-rechtliche-aspekte {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-img-regulierung-rechtliche-aspekte {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .protection-content-regulierung-rechtliche-aspekte {
    flex-direction: column;
  }
  
  .protection-text-regulierung-rechtliche-aspekte,
  .protection-image-regulierung-rechtliche-aspekte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section-regulierung-rechtliche-aspekte {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.faq-list-regulierung-rechtliche-aspekte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-regulierung-rechtliche-aspekte {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.faq-item-regulierung-rechtliche-aspekte[open] {
  background: #ffffff;
  border-color: #059669;
}

.faq-question-regulierung-rechtliche-aspekte {
  padding: 1.5rem;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question-regulierung-rechtliche-aspekte::after {
  content: '';
  font-size: 0.75rem;
  color: #059669;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item-regulierung-rechtliche-aspekte[open] .faq-question-regulierung-rechtliche-aspekte::after {
  transform: rotate(180deg);
}

.faq-answer-regulierung-rechtliche-aspekte {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.faq-text-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #4b5563;
}

.conclusion-section-regulierung-rechtliche-aspekte {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-regulierung-rechtliche-aspekte {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-points-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.conclusion-point-regulierung-rechtliche-aspekte {
  flex: 1 1 250px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.conclusion-point-regulierung-rechtliche-aspekte i {
  color: #059669;
  margin-top: 2px;
  flex-shrink: 0;
}

.conclusion-point-text-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.conclusion-cta-regulierung-rechtliche-aspekte {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

.cta-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-regulierung-rechtliche-aspekte {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-regulierung-rechtliche-aspekte:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.related-posts-section-regulierung-rechtliche-aspekte {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.related-title-regulierung-rechtliche-aspekte {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-regulierung-rechtliche-aspekte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.related-cards-regulierung-rechtliche-aspekte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-regulierung-rechtliche-aspekte {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.related-card-regulierung-rechtliche-aspekte:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.related-card-image-regulierung-rechtliche-aspekte {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card-regulierung-rechtliche-aspekte > h3,
.related-card-regulierung-rechtliche-aspekte > p,
.related-card-regulierung-rechtliche-aspekte > a {
  padding: 0 1.5rem;
}

.related-card-title-regulierung-rechtliche-aspekte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.related-card-description-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.related-card-link-regulierung-rechtliche-aspekte {
  display: inline-block;
  padding-bottom: 1.5rem;
  color: #059669;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-regulierung-rechtliche-aspekte:hover {
  color: #047857;
  text-decoration: underline;
}

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

.disclaimer-section-regulierung-rechtliche-aspekte {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-regulierung-rechtliche-aspekte {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  border: 1px solid #fcd34d;
}

.disclaimer-title-regulierung-rechtliche-aspekte {
  font-size: 1.25rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-regulierung-rechtliche-aspekte i {
  color: #f59e0b;
}

.disclaimer-text-regulierung-rechtliche-aspekte {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.disclaimer-text-regulierung-rechtliche-aspekte:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .intro-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .regulatory-bodies-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .legal-framework-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .requirements-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .protection-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .faq-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .conclusion-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .related-posts-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
  
  .disclaimer-section-regulierung-rechtliche-aspekte {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .intro-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .regulatory-bodies-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .legal-framework-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .requirements-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .protection-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .faq-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .conclusion-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .related-posts-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
  
  .disclaimer-section-regulierung-rechtliche-aspekte {
    padding: 6rem 0;
  }
}

.main-fonds-etf-verstehen {
  width: 100%;
}

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

.hero-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-fonds-etf-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-fonds-etf-verstehen a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-fonds-etf-verstehen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-fonds-etf-verstehen span {
  color: #9ca3af;
}

.hero-content-fonds-etf-verstehen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-block-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-fonds-etf-verstehen {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-fonds-etf-verstehen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-fonds-etf-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.meta-badge-fonds-etf-verstehen i {
  color: #059669;
}

.hero-image-fonds-etf-verstehen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.hero-stats-fonds-etf-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-fonds-etf-verstehen {
  flex: 0 1 auto;
  text-align: left;
}

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

.stat-label-fonds-etf-verstehen {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-fonds-etf-verstehen {
    flex-direction: column;
  }

  .hero-text-block-fonds-etf-verstehen,
  .hero-image-block-fonds-etf-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-fonds-etf-verstehen {
    gap: 1.5rem;
  }
}

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

.intro-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-img-fonds-etf-verstehen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-wrapper-fonds-etf-verstehen {
    flex-direction: column;
  }

  .intro-text-fonds-etf-verstehen,
  .intro-image-fonds-etf-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-fonds-etf-verstehen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-header-fonds-etf-verstehen {
  margin-bottom: 2rem;
}

.content-title-fonds-etf-verstehen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-wrapper-fonds-etf-verstehen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-paragraph-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-subheading-fonds-etf-verstehen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.content-list-fonds-etf-verstehen {
  list-style: none;
  margin-bottom: 1.5rem;
}

.list-item-fonds-etf-verstehen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.list-item-fonds-etf-verstehen::before {
  content: "";
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-image-img-fonds-etf-verstehen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-fonds-etf-verstehen {
    flex-direction: column;
  }

  .content-text-fonds-etf-verstehen,
  .content-image-fonds-etf-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.features-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.features-header-fonds-etf-verstehen {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-fonds-etf-verstehen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-fonds-etf-verstehen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-fonds-etf-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.features-card-fonds-etf-verstehen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.features-card-fonds-etf-verstehen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.features-card-title-fonds-etf-verstehen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.features-card-text-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.comparison-section-fonds-etf-verstehen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.comparison-header-fonds-etf-verstehen {
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-title-fonds-etf-verstehen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.comparison-wrapper-fonds-etf-verstehen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-bottom: 2rem;
}

.comparison-left-fonds-etf-verstehen,
.comparison-right-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-heading-fonds-etf-verstehen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #059669;
}

.comparison-list-fonds-etf-verstehen {
  list-style: none;
}

.comparison-item-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.comparison-item-fonds-etf-verstehen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.comparison-image-fonds-etf-verstehen {
  margin-top: 2rem;
}

.comparison-image-img-fonds-etf-verstehen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .comparison-wrapper-fonds-etf-verstehen {
    flex-direction: column;
  }

  .comparison-left-fonds-etf-verstehen,
  .comparison-right-fonds-etf-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-fonds-etf-verstehen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.strategy-header-fonds-etf-verstehen {
  text-align: center;
  margin-bottom: 3rem;
}

.strategy-title-fonds-etf-verstehen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.strategy-steps-fonds-etf-verstehen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-fonds-etf-verstehen {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.strategy-step-number-fonds-etf-verstehen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.strategy-step-content-fonds-etf-verstehen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.strategy-step-text-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-step-fonds-etf-verstehen {
    flex-direction: column;
    gap: 1rem;
  }
}

.quote-section-fonds-etf-verstehen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-fonds-etf-verstehen {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  border-radius: 8px;
  text-align: center;
}

.quote-text-fonds-etf-verstehen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

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

.conclusion-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-fonds-etf-verstehen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-block-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-fonds-etf-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-fonds-etf-verstehen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-fonds-etf-verstehen {
  margin-top: 2rem;
}

.cta-button-fonds-etf-verstehen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-fonds-etf-verstehen:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.25);
}

.conclusion-image-img-fonds-etf-verstehen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conclusion-content-fonds-etf-verstehen {
    flex-direction: column;
  }

  .conclusion-text-block-fonds-etf-verstehen,
  .conclusion-image-fonds-etf-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-fonds-etf-verstehen {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-fonds-etf-verstehen {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.disclaimer-title-fonds-etf-verstehen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.8;
}

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

.related-section-fonds-etf-verstehen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-fonds-etf-verstehen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-fonds-etf-verstehen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-fonds-etf-verstehen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
}

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

.related-card-fonds-etf-verstehen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-fonds-etf-verstehen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-image-fonds-etf-verstehen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-fonds-etf-verstehen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-fonds-etf-verstehen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-fonds-etf-verstehen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-fonds-etf-verstehen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .hero-stats-fonds-etf-verstehen {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .intro-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .content-section-one-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .features-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .comparison-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .strategy-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .quote-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .conclusion-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }

  .related-section-fonds-etf-verstehen {
    padding: 6rem 0;
  }
}

.main-vermoegensaufbau-systematisch {
  width: 100%;
}

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

.hero-content-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.hero-text-wrapper-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-content-vermoegensaufbau-systematisch {
    flex-wrap: nowrap;
  }
  
  .hero-text-wrapper-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero-description-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
}

.hero-meta-vermoegensaufbau-systematisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-image-wrapper-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-image-wrapper-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-vermoegensaufbau-systematisch {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-stats-vermoegensaufbau-systematisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(5, 150, 105, 0.05);
  border-radius: 12px;
}

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

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

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

.breadcrumbs-vermoegensaufbau-systematisch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-vermoegensaufbau-systematisch a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-vermoegensaufbau-systematisch a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-vermoegensaufbau-systematisch span {
  color: #cbd5e1;
}

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

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

.intro-text-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-text-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro-description-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-image-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-vermoegensaufbau-systematisch img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.process-header-vermoegensaufbau-systematisch {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

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

.process-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step-vermoegensaufbau-systematisch:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

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

.process-step-content-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.process-step-text-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.strategies-wrapper-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .strategies-text-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.strategies-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategies-description-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.strategies-list-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.strategy-item-vermoegensaufbau-systematisch {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-left: 4px solid #059669;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.strategy-item-vermoegensaufbau-systematisch:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.strategy-item-title-vermoegensaufbau-systematisch {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.strategy-item-text-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.strategies-image-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .strategies-image-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.strategies-image-vermoegensaufbau-systematisch img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.principles-header-vermoegensaufbau-systematisch {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.principles-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-cards-vermoegensaufbau-systematisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principles-card-vermoegensaufbau-systematisch {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.principles-card-vermoegensaufbau-systematisch:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

.card-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.card-text-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

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

.featured-quote-vermoegensaufbau-systematisch {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 0;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-text-vermoegensaufbau-systematisch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin: 0 0 1.5rem 0;
}

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

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

.action-wrapper-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.action-image-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .action-image-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.action-image-vermoegensaufbau-systematisch img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.action-text-vermoegensaufbau-systematisch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .action-text-vermoegensaufbau-systematisch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.action-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.action-description-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.action-checklist-vermoegensaufbau-systematisch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.checklist-item-vermoegensaufbau-systematisch {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
}

.checklist-item-vermoegensaufbau-systematisch i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn-action-vermoegensaufbau-systematisch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-action-vermoegensaufbau-systematisch:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.25);
}

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

.disclaimer-box-vermoegensaufbau-systematisch {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.disclaimer-text-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-vermoegensaufbau-systematisch {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.related-card-vermoegensaufbau-systematisch:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.related-card-image-vermoegensaufbau-systematisch {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-vermoegensaufbau-systematisch {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-vermoegensaufbau-systematisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  flex: 1;
}

.related-card-link-vermoegensaufbau-systematisch {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #059669;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-vermoegensaufbau-systematisch:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

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

@media (min-width: 768px) {
  .hero-section-vermoegensaufbau-systematisch {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-vermoegensaufbau-systematisch,
  .strategies-section-vermoegensaufbau-systematisch,
  .action-section-vermoegensaufbau-systematisch {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-section-vermoegensaufbau-systematisch,
  .principles-section-vermoegensaufbau-systematisch,
  .featured-quote-section-vermoegensaufbau-systematisch,
  .disclaimer-section-vermoegensaufbau-systematisch,
  .related-posts-section-vermoegensaufbau-systematisch {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-vermoegensaufbau-systematisch {
    justify-content: flex-start;
  }
}

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

.main-finanzbegriffe-anfaenger {
  width: 100%;
  font-family: var(--font-primary);
}

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

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

.breadcrumbs-finanzbegriffe-anfaenger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
}

.breadcrumbs-finanzbegriffe-anfaenger a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs-finanzbegriffe-anfaenger a:hover {
  color: #047857;
}

.breadcrumb-separator-finanzbegriffe-anfaenger {
  color: #d1d5db;
}

.breadcrumb-current-finanzbegriffe-anfaenger {
  color: #6b7280;
}

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

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

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

.hero-subtitle-finanzbegriffe-anfaenger {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #059669;
  font-weight: 600;
}

.hero-meta-finanzbegriffe-anfaenger {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.meta-item-finanzbegriffe-anfaenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
}

.meta-item-finanzbegriffe-anfaenger i {
  color: #059669;
}

.hero-description-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.hero-image-block-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-finanzbegriffe-anfaenger {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-finanzbegriffe-anfaenger {
    flex-direction: column;
  }

  .hero-text-block-finanzbegriffe-anfaenger,
  .hero-image-block-finanzbegriffe-anfaenger {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-description-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.intro-image-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-finanzbegriffe-anfaenger {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-finanzbegriffe-anfaenger {
    flex-direction: column;
  }

  .intro-text-finanzbegriffe-anfaenger,
  .intro-image-finanzbegriffe-anfaenger {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.terms-section-finanzbegriffe-anfaenger {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.terms-header-finanzbegriffe-anfaenger {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.terms-subtitle-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.term-card-finanzbegriffe-anfaenger {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card-finanzbegriffe-anfaenger:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.term-card-number-finanzbegriffe-anfaenger {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

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

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

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

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

.strategies-wrapper-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.strategies-text-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.strategies-description-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.strategies-list-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

.strategy-content-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-item-title-finanzbegriffe-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

.strategies-image-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-img-finanzbegriffe-anfaenger {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .strategies-wrapper-finanzbegriffe-anfaenger {
    flex-direction: column;
  }

  .strategies-text-finanzbegriffe-anfaenger,
  .strategies-image-finanzbegriffe-anfaenger {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-item-finanzbegriffe-anfaenger {
    flex-direction: column;
    gap: 1rem;
  }
}

.concepts-section-finanzbegriffe-anfaenger {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.concepts-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.concepts-content-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.concepts-text-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concepts-subtitle-finanzbegriffe-anfaenger {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
}

.concepts-paragraph-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.concepts-image-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
}

.concepts-image-img-finanzbegriffe-anfaenger {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.concepts-secondary-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concepts-secondary-image-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.concepts-secondary-image-img-finanzbegriffe-anfaenger {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.concepts-secondary-text-finanzbegriffe-anfaenger {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concepts-secondary-subtitle-finanzbegriffe-anfaenger {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
}

.concepts-secondary-paragraph-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 768px) {
  .concepts-content-finanzbegriffe-anfaenger,
  .concepts-secondary-finanzbegriffe-anfaenger {
    flex-direction: column;
  }

  .concepts-text-finanzbegriffe-anfaenger,
  .concepts-image-finanzbegriffe-anfaenger,
  .concepts-secondary-text-finanzbegriffe-anfaenger,
  .concepts-secondary-image-finanzbegriffe-anfaenger {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .concepts-secondary-image-finanzbegriffe-anfaenger {
    order: 0;
  }
}

.quote-section-finanzbegriffe-anfaenger {
  background: #111827;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-finanzbegriffe-anfaenger {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 5px solid #059669;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 8px;
  text-align: center;
}

.quote-text-finanzbegriffe-anfaenger {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-finanzbegriffe-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #d1d5db;
  font-style: normal;
  font-weight: 500;
}

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

.conclusion-content-finanzbegriffe-anfaenger {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.conclusion-text-finanzbegriffe-anfaenger:last-child {
  margin-bottom: 0;
}

.disclaimer-section-finanzbegriffe-anfaenger {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-finanzbegriffe-anfaenger {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  border-left: 5px solid #f59e0b;
}

.disclaimer-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-title-finanzbegriffe-anfaenger i {
  font-size: 1.25rem;
}

.disclaimer-text-finanzbegriffe-anfaenger {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #664d03;
  margin-bottom: 1rem;
}

.disclaimer-text-finanzbegriffe-anfaenger:last-child {
  margin-bottom: 0;
}

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

.related-header-finanzbegriffe-anfaenger {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-finanzbegriffe-anfaenger {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-finanzbegriffe-anfaenger {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-finanzbegriffe-anfaenger {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-image-finanzbegriffe-anfaenger {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-finanzbegriffe-anfaenger {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.related-card-title-finanzbegriffe-anfaenger {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

.related-card-link-finanzbegriffe-anfaenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.2s ease;
  margin-top: auto;
}

.related-card-link-finanzbegriffe-anfaenger:hover {
  color: #047857;
}

.related-card-link-finanzbegriffe-anfaenger i {
  transition: transform 0.2s ease;
}

.related-card-finanzbegriffe-anfaenger:hover .related-card-link-finanzbegriffe-anfaenger i {
  transform: translateX(4px);
}

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

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

  .intro-section-finanzbegriffe-anfaenger,
  .terms-section-finanzbegriffe-anfaenger,
  .strategies-section-finanzbegriffe-anfaenger,
  .concepts-section-finanzbegriffe-anfaenger,
  .conclusion-section-finanzbegriffe-anfaenger,
  .related-section-finanzbegriffe-anfaenger {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-finanzbegriffe-anfaenger {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .disclaimer-section-finanzbegriffe-anfaenger {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

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

.breadcrumbs-finanzbegriffe-anfaenger a:focus,
.related-card-link-finanzbegriffe-anfaenger:focus {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.main-fortgeschrittene-analysetechniken {
  width: 100%;
}

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

.breadcrumbs-fortgeschrittene-analysetechniken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

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

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

.breadcrumb-separator-fortgeschrittene-analysetechniken {
  color: #cbd5e1;
}

.breadcrumb-current-fortgeschrittene-analysetechniken {
  color: #64748b;
}

.hero-section-fortgeschrittene-analysetechniken {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-block-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.15;
}

.hero-subtitle-fortgeschrittene-analysetechniken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.article-meta-fortgeschrittene-analysetechniken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-stats-fortgeschrittene-analysetechniken {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

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

.stat-number-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-fortgeschrittene-analysetechniken {
  font-size: 0.875rem;
  color: #64748b;
}

.hero-image-block-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
}

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

@media (max-width: 768px) {
  .hero-content-fortgeschrittene-analysetechniken {
    flex-direction: column;
  }

  .hero-text-block-fortgeschrittene-analysetechniken,
  .hero-image-block-fortgeschrittene-analysetechniken {
    flex: 1 1 100%;
  }
}

.intro-section-fortgeschrittene-analysetechniken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.intro-description-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-block-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
}

.intro-image-fortgeschrittene-analysetechniken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-content-fortgeschrittene-analysetechniken {
    flex-direction: column;
  }

  .intro-text-block-fortgeschrittene-analysetechniken,
  .intro-image-block-fortgeschrittene-analysetechniken {
    flex: 1 1 100%;
  }
}

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

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

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

.methods-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.method-card-fortgeschrittene-analysetechniken {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

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

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

.method-card-text-fortgeschrittene-analysetechniken {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.content-section-fortgeschrittene-analysetechniken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.content-description-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.indicator-list-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.indicator-item-fortgeschrittene-analysetechniken {
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.indicator-name-fortgeschrittene-analysetechniken {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.indicator-description-fortgeschrittene-analysetechniken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.content-image-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
}

.content-image-fortgeschrittene-analysetechniken img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .content-wrapper-fortgeschrittene-analysetechniken {
    flex-direction: column;
  }

  .content-text-fortgeschrittene-analysetechniken,
  .content-image-fortgeschrittene-analysetechniken {
    flex: 1 1 100%;
  }
}

.patterns-section-fortgeschrittene-analysetechniken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.patterns-wrapper-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.patterns-image-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
}

.patterns-image-fortgeschrittene-analysetechniken img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.patterns-text-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.patterns-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.patterns-description-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.pattern-steps-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pattern-step-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.pattern-step-number-fortgeschrittene-analysetechniken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.pattern-step-content-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pattern-step-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

.pattern-step-text-fortgeschrittene-analysetechniken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .patterns-wrapper-fortgeschrittene-analysetechniken {
    flex-direction: column;
  }

  .patterns-image-fortgeschrittene-analysetechniken,
  .patterns-text-fortgeschrittene-analysetechniken {
    flex: 1 1 100%;
  }
}

.volume-section-fortgeschrittene-analysetechniken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.volume-wrapper-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.volume-text-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.volume-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.volume-description-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.featured-quote-fortgeschrittene-analysetechniken {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  margin: 1rem 0;
  border-radius: var(--radius-md);
}

.quote-text-fortgeschrittene-analysetechniken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-attribution-fortgeschrittene-analysetechniken {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.volume-insight-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.volume-image-fortgeschrittene-analysetechniken {
  flex: 1 1 50%;
}

.volume-image-fortgeschrittene-analysetechniken img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .volume-wrapper-fortgeschrittene-analysetechniken {
    flex-direction: column;
  }

  .volume-text-fortgeschrittene-analysetechniken,
  .volume-image-fortgeschrittene-analysetechniken {
    flex: 1 1 100%;
  }
}

.advanced-section-fortgeschrittene-analysetechniken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.advanced-header-fortgeschrittene-analysetechniken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.advanced-subtitle-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.combination-card-fortgeschrittene-analysetechniken {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.combination-card-fortgeschrittene-analysetechniken:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.combination-card-number-fortgeschrittene-analysetechniken {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: rgba(5, 150, 105, 0.1);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 20px;
}

.combination-card-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: 0.5rem;
}

.combination-card-text-fortgeschrittene-analysetechniken {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.conclusion-section-fortgeschrittene-analysetechniken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
}

.conclusion-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.conclusion-text-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.conclusion-steps-fortgeschrittene-analysetechniken {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.conclusion-step-fortgeschrittene-analysetechniken {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
}

.step-number-fortgeschrittene-analysetechniken {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 80px;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

@media (min-width: 768px) {
  .conclusion-steps-fortgeschrittene-analysetechniken {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.cta-box-fortgeschrittene-analysetechniken {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-fortgeschrittene-analysetechniken {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.cta-button-fortgeschrittene-analysetechniken:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.disclaimer-content-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

.disclaimer-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.disclaimer-text-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-fortgeschrittene-analysetechniken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-fortgeschrittene-analysetechniken {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.related-subtitle-fortgeschrittene-analysetechniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-fortgeschrittene-analysetechniken {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.related-card-fortgeschrittene-analysetechniken:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-fortgeschrittene-analysetechniken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-fortgeschrittene-analysetechniken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.related-card-content-fortgeschrittene-analysetechniken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

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

.related-card-description-fortgeschrittene-analysetechniken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

@media (min-width: 768px) {
  .related-cards-fortgeschrittene-analysetechniken {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-cards-fortgeschrittene-analysetechniken {
    gap: 2rem;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-text-primary: #ffffff;
  --color-text-secondary: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-primary-light: #22d3ee;
  --color-secondary: #3b82f6;
  --color-secondary-light: #60a5fa;
  --color-accent-gold: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

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

html, body {
  font-family: var(--font-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.trading-academy-about {
  width: 100%;
}

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

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

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

.hero-foundation-section-about::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-foundation-content-about {
  position: relative;
  z-index: 1;
}

.hero-foundation-intro-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero-foundation-title-about {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-foundation-tagline-about {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.5;
}

.hero-foundation-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 650px;
  line-height: 1.7;
}

.hero-foundation-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.stat-block-about {
  flex: 0 1 auto;
}

.stat-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-foundation-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: block;
  box-shadow: var(--shadow-xl);
}

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

.expertise-journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.journey-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.journey-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.journey-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.journey-subtitle-about {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: #64748b;
  line-height: 1.6;
}

.journey-milestones-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.milestone-item-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-item-about:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.milestone-number-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

.milestone-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.milestone-title-about {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 600;
  color: #0f172a;
}

.milestone-description-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.approach-methodology-section-about {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-methodology-section-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.approach-methodology-content-about {
  position: relative;
  z-index: 1;
}

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.approach-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary-light);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.approach-step-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.approach-step-about:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateX(8px);
}

.step-number-about {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 65px;
  line-height: 1;
}

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

.step-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.step-description-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.approach-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.feature-card-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-lg);
}

.feature-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-name-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.feature-description-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.impact-philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.philosophy-intro-about {
  max-width: 800px;
}

.philosophy-label-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.philosophy-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.philosophy-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

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

.quote-author-about {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

.disclaimer-section-about {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-foundation-stats-about {
    gap: 1.5rem;
  }

  .milestone-item-about {
    flex-direction: column;
  }

  .milestone-number-about {
    min-width: auto;
  }

  .approach-step-about {
    flex-direction: column;
  }

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

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .feature-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-foundation-stats-about {
    gap: 3rem;
  }

  .journey-milestones-about {
    gap: 2rem;
  }

  .approach-steps-about {
    gap: 2rem;
  }

  .values-grid-about {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .values-grid-about {
    gap: 2.5rem;
  }

  .feature-card-about {
    flex: 1 1 320px;
    max-width: 400px;
  }
}

.legal-academy {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary) !important;
}

.legal-academy-hero {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.legal-academy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-academy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary) !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-academy-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

.legal-academy-content {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.legal-academy-section {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.legal-academy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-academy-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-academy-section p:last-child {
  margin-bottom: 0;
}

.legal-academy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-academy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.legal-academy-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-academy-section li:last-child {
  margin-bottom: 0;
}

.legal-academy-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #d1d5db;
}

.legal-academy-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-academy-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-academy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.legal-academy-contact-item:last-child {
  margin-bottom: 0;
}

.legal-academy-contact-label {
  font-weight: 600;
  color: var(--color-text-primary) !important;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-academy-contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

  .legal-academy-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .legal-academy-section {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .legal-academy-contact {
    padding: clamp(2rem, 5vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .legal-academy-hero {
    padding: 5rem 0 6rem 0;
  }

  .legal-academy-content {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex: 1;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.thank-section h1 {
  color: var(--color-text-primary) !important;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  animation: slideUp 0.6s ease-out 0.1s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  animation: slideUp 0.6s ease-out 0.3s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-features {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  animation: slideUp 0.6s ease-out 0.4s both;
}

.thank-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.thank-feature i {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.thank-feature span {
  color: var(--color-text-primary) !important;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  animation: slideUp 0.6s ease-out 0.5s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  animation: slideUp 0.6s ease-out 0.6s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

  .thank-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .thank-feature {
    flex: 0 1 calc(50% - 0.5rem);
    max-width: 250px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 12vw, 6rem) 0;
  }

  .thank-features {
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .thank-feature {
    flex: 1;
    max-width: none;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }
}

.main.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: clamp(2rem, 8vw, 4rem) 0;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.error-code {
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
  animation: float 3s ease-in-out infinite;
}

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

.error-decoration {
  width: clamp(60px, 15vw, 120px);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
  border-radius: 2px;
}

.error-title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary) !important;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(2rem, 4vw, 2.5rem) 0;
  max-width: 500px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  animation: slideUp 0.8s ease-out 0.2s both;
}

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

.suggestion-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary) !important;
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  letter-spacing: 0.5px;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestion-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.suggestion-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  width: clamp(1.25rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-large {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  animation: slideUp 0.8s ease-out 0.4s both;
}

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

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

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

.error-footer-text {
  animation: slideUp 0.8s ease-out 0.6s both;
}

.error-footer-text p {
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

.error-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

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

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
  }

  .error-code-wrapper {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
  }

  .suggestion-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .error-footer-text {
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

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

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .suggestion-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .suggestion-list li {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-large:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }
}

h1, h2, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}