/* CSS Variables for Design System */
:root {
  /* Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #f97316;
  --accent-light: #fb923c;
  --semantic-success: #16a34a;
  --semantic-warning: #d97706;
  --semantic-error: #dc2626;
  
  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-white: #ffffff;
  
  /* Surface Colors */
  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --surface-3: #f3f4f6;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  
  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-24: 6rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-float: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-all: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-colors: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-transform: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--surface-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-4);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-4);
}

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-4);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-6);
  }
}


body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.grid {
  display: grid;
  gap: var(--spacing-4);
}

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }
.gap-4 { gap: var(--spacing-4); }
.gap-6 { gap: var(--spacing-6); }
.gap-8 { gap: var(--spacing-8); }
.gap-12 { gap: var(--spacing-12); }

.flex-1 { flex: 1 1 0%; }

@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
}

/* Spacing Utilities */
.p-4 { padding: var(--spacing-4); }
.p-6 { padding: var(--spacing-6); }
.p-8 { padding: var(--spacing-8); }

.px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
.py-2 { padding-top: var(--spacing-2); padding-bottom: var(--spacing-2); }
.py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
.py-6 { padding-top: var(--spacing-6); padding-bottom: var(--spacing-6); }
.py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
.py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
.py-16 { padding-top: var(--spacing-16); padding-bottom: var(--spacing-16); }
.py-24 { padding-top: var(--spacing-24); padding-bottom: var(--spacing-24); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pr-0 { padding-right: 0; }
.pl-0 { padding-left: 0; }
.p-0 { padding: 0; }

.m-0 { margin: 0; }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }
.mr-2 { margin-right: var(--spacing-2); }
.mr-3 { margin-right: var(--spacing-3); }
.ml-2 { margin-left: var(--spacing-2); }
.ml-3 { margin-left: var(--spacing-3); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.max-w-full { max-width: 100%; }
.max-w-screen { max-width: 100vw; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--text-white); }
.text-gray-400 { color: var(--neutral-400); }
.text-gray-500 { color: var(--neutral-500); }
.text-gray-600 { color: var(--neutral-600); }
.text-gray-700 { color: var(--neutral-700); }
.text-gray-800 { color: var(--neutral-800); }
.text-gray-900 { color: var(--neutral-900); }
.text-green-500 { color: var(--semantic-success); }
.text-yellow-400 { color: #fbbf24; }

.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-white { background-color: var(--surface-1); }
.bg-gray-50 { background-color: var(--surface-2); }
.bg-gray-100 { background-color: var(--neutral-100); }
.bg-gray-200 { background-color: var(--neutral-200); }
.bg-gray-800 { background-color: var(--neutral-800); }
.bg-gray-900 { background-color: var(--neutral-900); }
.bg-black { background-color: #000000; }
.bg-orange-500 { background-color: var(--accent); }
.bg-blue-400 { background-color: var(--primary-light); }

/* Border */
.border { border: 1px solid var(--neutral-200); }
.border-t { border-top: 1px solid var(--neutral-200); }
.border-b { border-bottom: 1px solid var(--neutral-200); }
.border-2 { border-width: 2px; }
.border-primary { border-color: var(--primary); }
.border-gray-500 { border-color: var(--neutral-500); }

/* Border Radius */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-float { box-shadow: var(--shadow-float); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Transform */
.transform { transform: translateZ(0); }
.scale-105 { transform: scale(1.05); }
.rotate-180 { transform: rotate(180deg); }

/* Transition */
.transition-all { transition: var(--transition-all); }
.transition-colors { transition: var(--transition-colors); }
.transition-transform { transition: var(--transition-transform); }
.duration-200 { transition-duration: 200ms; }

/* Hover States */
.hover-scale-105:hover { transform: scale(1.05); }
.hover-bg-gray-600:hover { background-color: var(--neutral-600); }
.hover-bg-primary-dark:hover { background-color: var(--primary-dark); }
.hover-bg-gray-100:hover { background-color: var(--neutral-100); }
.hover-text-white:hover { color: var(--text-white); }
.hover-text-primary:hover { color: var(--primary); }
.hover-text-primary-dark:hover { color: var(--primary-dark); }
.hover-text-gray-700:hover { color: var(--neutral-700); }
.hover-text-gray-500:hover { color: var(--neutral-500); }
.hover-text-gray-400:hover { color: var(--neutral-400); }

/* Additional button and link hover states */
.bg-primary:hover { background-color: var(--primary-dark); }
.text-primary:hover { color: var(--primary-dark); }
.bg-gray-700:hover { background-color: var(--neutral-600); }
.bg-white:hover { background-color: var(--neutral-100); }
.text-gray-400:hover { color: var(--neutral-500); }
.bg-gray-100:hover { background-color: var(--neutral-200); }
.text-gray-700:hover { color: var(--neutral-800); }
.text-white:hover { color: var(--surface-1); }

/* Button specific hover states */
.hover-bg-gray-100:hover { background-color: var(--neutral-100); }
.hover-bg-gray-600:hover { background-color: var(--neutral-600); }
.hover-bg-primary-dark:hover { background-color: var(--primary-dark); }
.hover-text-white:hover { color: var(--text-white); }
.hover-text-primary:hover { color: var(--primary); }
.hover-text-primary-dark:hover { color: var(--primary-dark); }
.hover-text-gray-700:hover { color: var(--neutral-700); }
.hover-text-gray-400:hover { color: var(--neutral-400); }

/* Focus States */
.focus-outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* Generic focus styles for all interactive elements */
button:focus, a:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Remove default focus for some elements */
button:focus:not(:focus-visible), 
input:focus:not(:focus-visible), 
textarea:focus:not(:focus-visible), 
select:focus:not(:focus-visible) {
  outline: none;
}

/* Footer Button Styles */
footer button, footer a {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: var(--neutral-400);
  cursor: pointer;
  transition: var(--transition-colors);
  display: block;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

footer button:hover, footer a:hover {
  color: var(--text-white);
  background: transparent;
}

footer button:focus, footer a:focus {
  outline: none;
  background: transparent;
}

footer .space-y-2 > * {
  margin-bottom: var(--spacing-2);
}

footer .space-y-2 > *:last-child {
  margin-bottom: 0;
}

/* Footer Grid Layout Fixes */
footer .grid {
  gap: var(--spacing-8);
}

/* Responsive footer grid */
@media (max-width: 767px) {
  footer .grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  footer .md-grid-cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Footer Text Styles */
footer h4 {
  color: var(--text-white);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-4);
}

footer p {
  color: var(--neutral-400);
  line-height: 1.6;
}

/* Fix contact section spacing */
footer .space-y-2 {
  line-height: 1.4;
}

footer .space-y-2 p {
  margin-bottom: var(--spacing-1);
}

footer .space-y-2 p:last-child {
  margin-bottom: 0;
}

/* Contact and impressum text improvements */
footer .space-y-2 strong {
  color: var(--text-white);
  font-weight: 600;
}

footer .text-xs {
  font-size: var(--font-size-xs);
  line-height: 1.3;
}

/* Affiliate disclaimer banner styling */
.bg-yellow-900\/20 {
  background-color: rgba(146, 64, 14, 0.2);
}

.border-yellow-600\/30 {
  border-color: rgba(217, 119, 6, 0.3);
}

.text-yellow-200 {
  color: #fef3c7;
}

/* Specific Components */
.rounded-full {
  border-radius: 9999px;
}

.bg-primary\/10 {
  background-color: rgba(37, 99, 235, 0.1);
}

.bg-primary\/5 {
  background-color: rgba(37, 99, 235, 0.05);
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-90 {
  opacity: 0.9;
}

/* Animation Classes */
.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .md-hidden {
    display: none;
  }
  
  .lg-py-24 {
    padding-top: var(--spacing-24);
    padding-bottom: var(--spacing-24);
  }
  
  .lg-text-5xl {
    font-size: var(--font-size-5xl);
  }
  
  .lg-text-4xl {
    font-size: var(--font-size-4xl);
  }
  
  .lg-text-3xl {
    font-size: var(--font-size-3xl);
  }
  
  .lg-text-2xl {
    font-size: var(--font-size-2xl);
  }
  
  .lg-grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .lg-gap-12 {
    gap: var(--spacing-12);
  }
  
  .lg-order-2 {
    order: 2;
  }
  
  .lg-order-1 {
    order: 1;
  }
}

@media (max-width: 639px) {
  .sm-flex-row {
    flex-direction: row;
  }
}

/* Responsive Utility Classes */
@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }
  
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .md-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .md-flex-row {
    flex-direction: row;
  }
  
  .md-hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
  
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .lg-text-5xl {
    font-size: var(--font-size-5xl);
  }
  
  .lg-text-4xl {
    font-size: var(--font-size-4xl);
  }
  
  .lg-text-3xl {
    font-size: var(--font-size-3xl);
  }
  
  .lg-text-2xl {
    font-size: var(--font-size-2xl);
  }
  
  .lg-py-24 {
    padding-top: var(--spacing-24);
    padding-bottom: var(--spacing-24);
  }
  
  .lg-gap-12 {
    gap: var(--spacing-12);
  }
  
  .lg-order-1 {
    order: 1;
  }
  
  .lg-order-2 {
    order: 2;
  }
}

@media (min-width: 640px) {
  .sm-flex-row {
    flex-direction: row;
  }
}

/* Font Awesome Integration */
.fas, .far, .fab {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
@media(max-width:720px){
  .wrapper h1{
    font-size: 20px;
  }
}
.fas { font-weight: 900; }
.far { font-weight: 400; }
.docs ul li{
  list-style-type: none;
}
/* FAQ Styles */
.faq-item {
  margin-bottom: var(--spacing-4);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: var(--surface-1);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  cursor: pointer;
  transition: var(--transition-colors);
}

.faq-question:hover {
  background-color: var(--surface-2);
  border-color: var(--neutral-300);
}

.faq-question:active {
  background-color: var(--neutral-100);
}

.faq-answer {
  background-color: var(--surface-1);
  border-left: 1px solid var(--neutral-200);
  border-right: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--spacing-6);
  padding-top: 0;
  color: var(--text-secondary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -1px;
}

.faq-question:hover .fas {
  color: var(--primary);
}

.faq-answer.show {
  display: block;
}

.faq-answer.hidden {
  display: none;
}

.faq-question .fas.rotate {
  transform: rotate(180deg);
}

.faq-question:focus {
  outline: none;
}

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

/* Modal Styles */
.modal-overlay {
  backdrop-filter: blur(4px);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Utility Classes */
.text-underline {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

.line-through {
  text-decoration: line-through;
}

/* Image Styles */

.object-cover {
  object-fit: cover;
}

.object-top {
  object-position: top;
}

/* Button Styles */
button, .btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: var(--transition-colors);
  white-space: nowrap;
  min-width: auto;
  box-sizing: border-box;
  max-width: 100%;
}

/* Specific button fixes */
.rounded-full {
  border-radius: 9999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Button padding fixes */
.px-6 {
  padding-left: var(--spacing-6);
  padding-right: var(--spacing-6);
}

.px-8 {
  padding-left: var(--spacing-8);
  padding-right: var(--spacing-8);
}

.py-2 {
  padding-top: var(--spacing-2);
  padding-bottom: var(--spacing-2);
}

.py-3 {
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-3);
}

.py-4 {
  padding-top: var(--spacing-4);
  padding-bottom: var(--spacing-4);
}

button:focus, .btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Input Styles */
input, textarea, select {
  font-family: inherit;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  padding: var(--spacing-3) var(--spacing-4);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--surface-1);
  transition: var(--transition-colors);
}

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

/* Link Styles */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-colors);
}

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

/* List Styles */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li, ol li {
  margin-bottom: var(--spacing-2);
}

ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary: #0000ff;
    --text-primary: #000000;
    --text-secondary: #000000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

.advertorial-disclaimer {
    width: 100%;
    background-color: #f5f5f5;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    z-index: 9999;
}
a.w-full.bg-primary.hover-bg-primary-dark.text-white.font-medium.px-8.py-4.rounded-full.flex.items-center.justify-center.gap-2.transition-all.hover-scale-105.shadow-lg.text-lg {
    max-width: -webkit-fill-available;
}
nav.hidden.md-flex.space-x-8 {
    gap: 10px;
}