/* Modern CSS with Tailwind-like utilities and enhanced design */

/* CSS Variables for consistent theming */
:root {
  --primary: #1f2a61;
  --primary-light: #3b4a8a;
  --primary-dark: #0f1a3a;
  --accent: #ff6b35;
  --accent-dark: #e55a2b;
  --silver: #f3f6fb;
  --white: #ffffff;
  --text-primary: #1f2a61;
  --text-secondary: #4c5b7d;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px 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-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Dark mode variables */
[data-theme="dark"] {
  --primary: #3b4a8a;
  --primary-light: #5a6bb8;
  --primary-dark: #0f1a3a;
  --accent: #ff8c5a;
  --accent-dark: #e67a4a;
  --silver: #1a1a1a;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
}

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  background-color: var(--silver);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Utility classes */
.w-full { 
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.w-52 { width: 13rem; }
.w-64 { width: 16rem; }
.h-52 { height: 13rem; }
.h-40 { height: 10rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* Padding für main Container, damit Buttons den Text nicht überdecken */
main {
  padding-bottom: 2rem;
}

@media (max-width: 640px) {
  main {
    padding-bottom: 3rem;
  }
}
.max-w-48 { max-width: 12rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.inline-flex { display: inline-flex; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1-5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.pt-8 { padding-top: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-6 { margin-left: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-extrabold { font-weight: 800; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.transition { transition: all 0.15s ease-in-out; }

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

.min-h-screen { min-height: 100vh; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

.list-disc { list-style-type: disc; }

/* Color utilities */
.bg-white { background-color: var(--white); }
.bg-silver { background-color: var(--silver); }
.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }

.text-primary { color: var(--primary); }
.text-primary-dark { color: var(--text-primary); }
.text-primary-light { color: var(--primary-light); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-silver { color: var(--text-secondary); }

/* Dark Mode: Hellere Textfarben */
[data-theme="dark"] .text-primary-dark {
  color: #ffffff;
}

[data-theme="dark"] .text-silver {
  color: #e0e0e0;
}

[data-theme="dark"] body {
  color: #ffffff;
}

[data-theme="dark"] p {
  color: #e5e5e5;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #ffffff;
}

/* Spezielle Klasse für Überschriften mit besserem Kontrast */
.text-heading {
  color: #1f2a61; /* Dunkelblau für hellen Modus */
}

[data-theme="dark"] .text-heading {
  color: #ffffff; /* Weiß für dunklen Modus */
}

/* Spezielle Klasse für Projekttexte */
.text-project {
  color: #93969d; /* Noch helleres Grau für hellen Modus */
}

[data-theme="dark"] .text-project {
  color: #b0b0b0; /* Hellgrau für dunklen Modus */
}

/* Spezielle Klasse für Header-Logo */
.text-logo {
  color: #909093; /* Dunkelblau für hellen Modus */
}

[data-theme="dark"] .text-logo {
  color: #d1d5db; /* Helleres Grau für dunklen Modus */
}

.border-silver { border-color: var(--silver); }
.border-accent { border-color: var(--accent); }

/* Gradient utilities */
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--primary), var(--accent));
}

      .chat-launcher {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 50;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #2563eb, #06b6d4);
        color: #fff;
        font-weight: 600;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
        cursor: pointer;
        border: none;
      }

      .chat-launcher-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.2);
        font-size: 16px;
      }

      .chat-widget {
        position: fixed;
        bottom: 5.5rem;
        right: 1.5rem;
        width: 380px;
        max-width: 92vw;
        height: 520px;
        border-radius: 1.25rem;
        background: #020617;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
        overflow: hidden;
        z-index: 50;
        display: flex;
        flex-direction: column;

        transform: translateY(120%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .chat-widget.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .chat-widget-header {
        padding: 0.9rem 1.1rem;
        background: linear-gradient(135deg, #0f172a, #1e293b);
        color: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
      }

      .chat-widget-header-title {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
      }

      .chat-widget-header-title span:first-child {
        font-size: 0.9rem;
        font-weight: 600;
      }

      .chat-widget-header-title span:last-child {
        font-size: 0.75rem;
        color: #9ca3af;
      }

      .chat-widget-close {
        background: transparent;
        border: none;
        color: #9ca3af;
        cursor: pointer;
        font-size: 1.1rem;
      }

      .chat-widget-body {
        flex: 1;
        background: #020617;
      }

      @media (max-width: 640px) {
        .chat-widget {
          right: 0.75rem;
          left: 0.75rem;
          width: auto;
        }
      }

      /* WhatsApp Button */
      .whatsapp-button {
        position: fixed;
        bottom: 9.5rem;
        right: 1.5rem;
        z-index: 49;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .whatsapp-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
        background: linear-gradient(135deg, #128C7E, #25D366);
      }

      .whatsapp-button:active {
        transform: translateY(0);
      }

      .whatsapp-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
        font-size: 18px;
        flex-shrink: 0;
      }

      .whatsapp-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }

      @media (max-width: 640px) {
        .whatsapp-button {
          right: 0.75rem;
          bottom: 9.5rem;
          width: 56px;
          height: 56px;
          padding: 0;
          font-size: 0.85rem;
          justify-content: center;
          border-radius: 50%;
        }

        .whatsapp-button span:not(.whatsapp-icon) {
          display: none;
        }
      }


/* Sticky header for consistent navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--primary), var(--primary-light));
}

.hover\:from-primary-light:hover {
  background-image: linear-gradient(to right, var(--primary-light), var(--primary));
}

.hover\:to-primary:hover {
  background-image: linear-gradient(to right, var(--primary-light), var(--primary));
}

/* Hover states */
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-primary-light:hover { background-color: var(--primary-light); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-accent-dark:hover { background-color: var(--accent-dark); }

/* Focus states */
.focus\:outline-accent:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Dark mode classes */
.dark\:bg-primary-dark { background-color: var(--primary-dark); }
.dark\:bg-primary { background-color: var(--primary); }
.dark\:text-white { color: var(--white); }
.dark\:text-silver { color: var(--text-secondary); }

/* Enhanced button styles */
button, .btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

button:hover, .btn:hover {
  transform: translateY(-1px);
}

button:active, .btn:active {
  transform: translateY(0);
}

/* Enhanced form styles */
input, textarea {
  font-family: inherit;
  transition: all 0.2s ease;
  border: 1px solid var(--silver);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Text wrapping and overflow prevention */
.min-w-0 {
  min-width: 0;
}

section p,
section ul,
section li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

/* Zentrierte Texte nicht in Blocksatz */
.text-center p,
.text-center {
  text-align: center;
}

/* Listen-Elemente linksbündig für bessere Lesbarkeit */
ul li,
ol li {
  text-align: left;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .md\:flex { display: flex; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:flex-row { flex-direction: row; }
  
  .hidden.md\:flex {
    display: none;
  }
  
  /* Responsive images on mobile */
  section img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:flex-row { flex-direction: row; }
  
  .hidden.md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
}

/* Animation enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

[data-theme="dark"] header {
  background-color: rgba(15, 26, 58, 0.9);
}

/* Enhanced card styles */
.card-enhanced {
  background: linear-gradient(135deg, var(--white) 0%, rgba(243, 246, 251, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .card-enhanced {
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(42, 42, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Focus visible for better accessibility */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Visuelle Verbesserungen - Hover-Effekte für Cards */
section {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Verbesserte Button-Hover-Effekte */
a[class*="bg-primary"]:hover,
button[class*="bg-primary"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Verbesserte Link-Hover-Effekte */
a.hover\:underline:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Gradient-Text für Headlines (optional, subtil) */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Verbesserte Card-Animationen */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Verbesserte Schatten für mehr Tiefe */
.shadow-enhanced {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 
              0 2px 4px -2px rgb(0 0 0 / 0.1),
              0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Sprachumschaltungs-Button Styling */
#lang-toggle {
  min-width: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* ========================================
   UNIFIED CTA SECTION STYLES
   Used across all pages for consistency
   ======================================== */

.cta-section {
  margin-top: 5rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(31, 42, 97, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  border: 2px solid rgba(31, 42, 97, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: ctaGradientShift 3s ease infinite;
}

@keyframes ctaGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(31, 42, 97, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
  cursor: pointer;
  animation: ctaPulse 3s ease-in-out infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(31, 42, 97, 0.4), 0 0 0 8px rgba(255, 107, 53, 0.1);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

.cta-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(31, 42, 97, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(31, 42, 97, 0.3), 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

/* Dark Mode CTA Adjustments */
[data-theme="dark"] .cta-container {
  background: linear-gradient(135deg, rgba(59, 74, 138, 0.15) 0%, rgba(255, 140, 90, 0.15) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .cta-heading {
  color: #ffffff;
}

[data-theme="dark"] .cta-subtitle {
  color: #e0e0e0;
}

/* Mobile Responsive CTA */
@media (max-width: 768px) {
  .cta-section {
    margin-top: 3rem;
    padding: 0 0.5rem;
  }
  
  .cta-container {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
  
  .cta-heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile Responsive CTA */
@media (max-width: 480px) {
  .cta-section {
    margin-top: 2.5rem;
    padding: 0 0.75rem;
  }
  
  .cta-container {
    padding: 1.75rem 1.25rem;
    border-radius: 0.875rem;
  }
  
  .cta-heading {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .cta-arrow {
    width: 16px;
    height: 16px;
  }
}
