/* Inline style replacements for products.html */
.products-padding-bottom {
  padding-bottom: 6rem;
}
.products-bg-secondary {
  background: var(--bg-secondary);
}
.products-box-shadow {
  box-shadow: 0 4px 15px var(--shadow);
}
.products-text-center {
  text-align: center;
}
.products-font-2rem {
  font-size: 2rem;
}
.products-margin-bottom-1rem {
  margin-bottom: 1rem;
}
/* Moderne Produktkategorien */
.product-categories-section {
    position: relative;
    overflow: hidden;
}

.product-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(var(--accent-primary-rgb), 0.03) 0%, transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(var(--accent-secondary-rgb), 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card-inner {
    background: var(--bg-secondary);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.product-card:hover .product-card-inner {
    border-color: var(--accent-primary);
}

.product-icon-wrapper {
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.product-card:hover .product-icon-wrapper {
    background: var(--accent-primary);
}

.product-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s ease;
}

.product-card:hover .product-icon-wrapper::after {
    left: 100%;
}

.product-icon {
  width: 48px;
  height: 48px;
    color: var(--text-primary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    color: white;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.product-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.product-card:hover .product-title::after {
    width: 60px;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.product-features {
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.product-link {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
}

.product-link::after {
    content: '→';
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
}

.product-link:hover {
    background: var(--accent-primary);
    color: white;
}

.product-link:hover::after {
    transform: translateX(3px);
}:root {
    --accent-primary-rgb: 74, 137, 220;
    --accent-secondary-rgb: 58, 112, 185;
}

/* Individuallösungen Tabs/Slider Styles */
.css-tabs {
    margin-top: 2rem;
    position: relative;
}

.tab-input {
    display: none; /* Verstecke die Radio-Buttons */
}

.tab-labels {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-label {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-label:hover {
    background-color: var(--accent-primary);
    transform: scale(1.2);
}

/* Wenn ein Radio-Button ausgewählt ist, style das entsprechende Label */
#tab1:checked ~ .tab-labels .tab-label[for="tab1"],
#tab2:checked ~ .tab-labels .tab-label[for="tab2"],
#tab3:checked ~ .tab-labels .tab-label[for="tab3"],
#tab4:checked ~ .tab-labels .tab-label[for="tab4"],
#tab5:checked ~ .tab-labels .tab-label[for="tab5"] {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.2);
    box-shadow: 0 4px 15px var(--shadow);
}

.tab-content {
    position: relative;
    overflow: visible; /* Verhindert Abschneiden beim Hover */
    min-height: 350px;
    padding-top: 5px; /* Zusätzlicher Platz oben für den Hover-Effekt */
}

.tab-pane {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(20px);
}

/* Zeige den aktiven Tab an */
#tab1:checked ~ .tab-content .tab-pane:nth-child(1),
#tab2:checked ~ .tab-content .tab-pane:nth-child(2),
#tab3:checked ~ .tab-content .tab-pane:nth-child(3),
#tab4:checked ~ .tab-content .tab-pane:nth-child(4),
#tab5:checked ~ .tab-content .tab-pane:nth-child(5) {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.solution-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px var(--shadow);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
    border-color: var(--accent-primary);
}

.solution-card h4 {
    color: var(--accent-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-card ul {
    padding-left: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
}

.solution-card li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Pfeile Navigation */
.tab-arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.tab-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.tab-arrow:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.tab-arrow:hover::before,
.tab-arrow:hover::after {
    background-color: white;
}

.tab-arrow::before,
.tab-arrow::after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    transition: background-color 0.3s ease;
}

/* Pfeil-Links - korrigierte Richtung */
.tab-arrow-left::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    transform: translateX(-2px);
}

.tab-arrow-left::after {
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    top: 50%;
    left: 40%;
    margin-top: -4px;
    transform: rotate(45deg);
    background-color: transparent;
}

/* Pfeil-Rechts - korrigierte Richtung */
.tab-arrow-right::before {
    width: 12px;
    height: 2px;
    top: 50%;
    right: 50%;
    margin-right: -5px;
    transform: translateX(2px);
}

.tab-arrow-right::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-primary);
    border-top: 2px solid var(--text-primary);
    top: 50%;
    right: 40%;
    margin-top: -4px;
    transform: rotate(45deg);
    background-color: transparent;
}

/* Anpassungen für Hover-Effekt */
.tab-arrow-left:hover::after,
.tab-arrow-right:hover::after {
    border-color: white;
}

/* Zeige/verstecke die passenden Pfeile basierend auf dem aktuellen Tab */
#tab1:checked ~ .tab-arrows .prev-for-tab1,
#tab2:checked ~ .tab-arrows .prev-for-tab2,
#tab3:checked ~ .tab-arrows .prev-for-tab3,
#tab4:checked ~ .tab-arrows .prev-for-tab4,
#tab5:checked ~ .tab-arrows .prev-for-tab5,
#tab1:checked ~ .tab-arrows .next-for-tab1,
#tab2:checked ~ .tab-arrows .next-for-tab2,
#tab3:checked ~ .tab-arrows .next-for-tab3,
#tab4:checked ~ .tab-arrows .next-for-tab4,
#tab5:checked ~ .tab-arrows .next-for-tab5 {
    display: flex;
}

.tab-arrow {
    display: none; /* Verstecke alle Pfeile standardmäßig */
}

/* Hinweistext */
.css-tabs::after {
    content: "Nutzen Sie die Punkte oder Pfeile zum Navigieren";
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.7;
}.bg-secondary {
  background: var(--bg-secondary);
}
.text-center {
  text-align: center;
}
.imprint-title {
  color: var(--accent-primary);
  margin: 1.5rem 0 0.5rem;
}
/* Imprint page specific classes */
.imprint-maxwidth {
  max-width: 800px;
  margin: 0 auto;
}
.imprint-card-margin {
  margin-bottom: 2rem;
}
.imprint-box {
  background: var(--bg-tertiary);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.imprint-title {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}
.imprint-primary {
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}
.imprint-secondary {
  color: var(--text-secondary);
}
.imprint-secondary-small {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.imprint-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}
.imprint-bold {
  font-weight: 500;
  color: var(--text-primary);
}
.imprint-link {
  color: var(--accent-primary);
}
/* Utility classes for layout and spacing (moved from hero.css) */
.flex-center {
  display: flex;
  align-items: center;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mr-10 {
  margin-right: 10px;
}
.accent-primary {
  color: var(--accent-primary);
}
.text-secondary {
  color: var(--text-secondary);
}
.mt-1 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 3rem;
}
.text-center {
  text-align: center;
}
.fs-3rem {
  font-size: 3rem;
}
.m-0 {
  margin: 0;
}
/* page.layout.css */

.quote-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}
.time-tracking-demo {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.time-tracking-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
}
.activity-log::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 3px;
}
.slogan-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
}
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}
.member-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  /* Entfernung des Farbverlaufs */
}
.member-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.member-company {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.member-email {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.member-email a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.member-email a:hover {
  color: var(--text-primary);
}
.member-bio {
  margin-bottom: 1.5rem;
}
.member-bio p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}
.unique-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}
.unique-title .icon {
  font-size: 1.2rem;
}

.tag {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.unique-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.member-quote {
  font-style: italic;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}
.quote-mark {
  color: var(--accent-primary);
  font-size: 1.5rem;
  font-weight: bold;
}
.stats-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.stats-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.values-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.values-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.current-time {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
}
.time-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.time-info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'Courier New', monospace;
}
.activity-log {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  max-height: 300px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}
.activity-log h4 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.activity-log h4::before {
  content: '📋';
  font-size: 1rem;
}
.activity-log::-webkit-scrollbar {
  width: 6px;
}
.member-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}
.values-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.modern-team-grid {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.profile-section {
  position: relative;
  padding: 2rem 2rem 0 2rem;
  text-align: center;
}
.profile-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.unique-section {
  margin-bottom: 1.5rem;
}
.quote-section {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-radius: 16px;
  border-left: 4px solid var(--accent-primary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.card ul,
.glass-card ul,
.feature-card-modern ul,
.card-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.card li,
.glass-card li,
.feature-card-modern li,
.card-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.team-card {
  text-align: center;
}
.team-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Default visible state for pages without team-animations.js */
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
}
.team-page .team-card {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}
.team-page .team-card.loaded {
  opacity: 1;
  transform: translateY(0);
  animation: smoothFadeIn 0.6s ease-out forwards;
}
.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-primary);
}
.team-card:hover .card-bg-gradient {
  opacity: 0.2;
}
.team-card:hover .profile-image {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}
.team-card:hover .tag {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}
.team-card:hover .card-hover-effect {
  opacity: 0.05;
}
.team-card {
  /* Initial state prevents flickering */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.team-card.ready {
  opacity: 1;
  transform: translateY(0);
}
.team-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.team-page .team-card:not(.loaded) {
  visibility: hidden;
}
.team-page .team-card.loaded {
  visibility: visible;
}
.team-card {
  visibility: visible;
}
.time-info-card {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}
.time-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
  border-color: var(--accent-primary);
}
.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-primary);
}
.team-name {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.team-title {
  color: var(--accent-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.team-quote {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.team-stats {
  background: var(--bg-secondary);
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.team-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.team-values {
  background: var(--bg-primary);
  padding: 6rem 0;
  position: relative;
}
.team-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.time-info-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover .profile-overlay {
  opacity: 0.2;
}
.activity-log::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}
.activity-log::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

.error-message {
    color: var(--accent-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

details summary {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

details[open] summary {
    margin-bottom: 0.5rem;
}

details p {
    padding-left: 1rem;
    border-left: 3px solid var(--accent-primary);
}@media (prefers-reduced-motion: reduce){
.team-card,
    .stat-item,
    .value-card {
      animation: none !important;
      transition: none !important;
    }.team-card:hover,
    .stat-item:hover,
    .value-card:hover {
      transform: none !important;
    }
}
@media (prefers-contrast: high){
.team-card,
    .stat-item,
    .value-card {
      border: 2px solid var(--text-primary);
    }
}/* Responsive Styles für Imprint-Seite */.page-layout {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 3rem;
    text-align: left;
}

.page-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.disclaimer-section:last-child {
    border-bottom: none;
}

.disclaimer-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-paragraph {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
    color: var(--text-primary);
}

.legal-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design *//* Dark mode Anpassungen */
body.dark-theme .disclaimer-section {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .legal-paragraph {
    color: var(--text-primary);
}

body.dark-theme .disclaimer-section h2 {
    color: var(--primary-blue);
}

.disclaimer-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.legal-jurisdiction {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-theme .disclaimer-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .legal-jurisdiction {
    color: rgba(0, 0, 0, 1);
}
