/* ============================================
   MODERN DESIGN - AHS-UMZÜGE 2025
   ============================================ */

:root {
  /* Brand Colors - Blue Theme */
  --primary: #0D47A1;
  --primary-light: #1976D2;
  --primary-dark: #01579B;
  --accent: #2196F3;
  --accent-light: #64B5F6;
  
  /* Neutral Colors */
  --navy: #0D1F40;
  --slate: #3B4556;
  --muted: #5B6473;
  --text: #1a1a1a;
  
  /* Background Colors */
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --border: #E5E9F0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
  --gradient-accent: linear-gradient(135deg, #64B5F6 0%, #2196F3 100%);
  --gradient-hero: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 71, 161, 0.12);
  --shadow-lg: 0 8px 32px rgba(13, 71, 161, 0.16);
  --shadow-xl: 0 16px 48px rgba(13, 71, 161, 0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Spacing */
  --container: 1200px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--spacing-md);
}

.logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.08) 0%, rgba(13, 71, 161, 0.08) 100%);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
}

.logo:hover {
  transform: translateY(-2px);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.12) 0%, rgba(13, 71, 161, 0.12) 100%);
  box-shadow: var(--shadow-sm);
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(13, 71, 161, 0.2));
}

.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu a {
  color: var(--slate);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.menu a:hover::after,
.menu a[aria-current="page"]::after {
  width: 100%;
}

.menu a[aria-current="page"] {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 24px;
  color: var(--primary);
}

.mobile-toggle:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
  transform: scale(1.05);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.btn:hover::before {
  opacity: 1;
}

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

.btn.secondary {
  background: var(--bg);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  min-width: 160px;
}

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

.btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.btn.secondary img {
  filter: none;
}

.btn.secondary:hover img {
  filter: brightness(0) invert(1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: var(--spacing-xl) 0;
  background: var(--gradient-hero);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero > div:first-child {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 600px;
}

.hero .art {
  position: relative;
}

.hero .art img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero .art:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: var(--shadow-sm);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(33, 150, 243, 0);
  }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: var(--spacing-xl) 0;
}

.section .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 12px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ============================================
   GRID & CARDS
   ============================================ */

.grid {
  display: grid;
  gap: 28px;
}

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

.card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card:hover::before {
  opacity: 0.05;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition-fast);
}

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

.card .muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Icons */
.icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 6px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-accent);
}

/* ============================================
   STEPS
   ============================================ */

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #ffffff;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.step:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step:hover::before {
  opacity: 0.05;
}

.step strong {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.step .muted {
  color: var(--slate);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
  color: var(--muted);
  margin-top: var(--spacing-xl);
}

.footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer h3,
.footer h4 {
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 20px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p {
  margin: 0 0 12px;
  line-height: 1.8;
}

.footer a {
  color: var(--slate);
  transition: all var(--transition-fast);
}

.footer a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.footer .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .list li {
  margin-bottom: 10px;
}

.footer .list a {
  display: inline-block;
  padding: 4px 0;
}

.footer small {
  display: block;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 48px;
    --spacing-lg: 32px;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: var(--spacing-lg) 0;
  }
  
  .hero .art {
    order: -1;
  }
  
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer .cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer .cols > div:first-child {
    grid-column: 1 / -1;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  :root {
    --spacing-xl: 40px;
    --spacing-lg: 28px;
    --spacing-md: 20px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .nav {
    height: 70px;
  }
  
  .logo img {
    height: 36px;
  }
  
  .menu {
    display: none;
  }
  
  .mobile-toggle {
    display: inline-flex;
  }
  
  .hero {
    padding: var(--spacing-md) 0;
    gap: 32px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .section .heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .step {
    padding: 20px;
  }
  
  .footer {
    padding: 40px 0 24px;
  }
  
  .footer .cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer .cols > div:first-child {
    grid-column: 1;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .hero > div:first-child {
    display: flex;
    flex-direction: column;
  }
  
.hero > div:first-child > div[style*="display:flex"] {
    flex-direction: column !important;
    width: 100%;
    gap: 12px !important;
  }
  
  .hero > div:first-child > div[style*="display:flex"] a {
    width: 100%;
    min-width: auto;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .section h2 {
    font-size: 24px;
  }
  
  .card h3 {
    font-size: 18px;
  }
  
  .nav {
    height: 64px;
  }
  
  .logo img {
    height: 32px;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .card,
  .btn,
  .step,
  .hero .art img {
    transition: all var(--transition-base);
  }
  
  .menu a::after {
    transition: width var(--transition-base);
  }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: var(--gradient-primary);
  padding: var(--spacing-xl) 0;
  margin: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SLIDER
   ============================================ */

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.gallery-item {
  min-width: calc(33.333% - 16px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(13, 31, 64, 0.95), transparent);
  color: white;
  font-weight: 600;
  font-size: 16px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--primary);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gallery-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
  padding: var(--spacing-xl) 0;
  margin: var(--spacing-xl) 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonial-stars {
  font-size: 28px;
  color: #FFB800;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--slate);
  margin: 0 0 32px;
  font-style: italic;
  position: relative;
  padding-left: 32px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 64px;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.author-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}

.author-location {
  font-size: 14px;
  color: var(--muted);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.dot:hover {
  background: var(--primary-light);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .gallery-item {
    min-width: calc(50% - 12px);
  }
  
  .testimonial-card {
    padding: 32px;
  }
  
  .testimonial-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: var(--spacing-lg) 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 24px 16px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .gallery-item {
    min-width: 100%;
  }
  
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .gallery-prev {
    left: 10px;
  }
  
  .gallery-next {
    right: 10px;
  }
  
  .testimonials-section {
    padding: var(--spacing-lg) 0;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 16px;
    padding-left: 24px;
  }
  
  .testimonial-text::before {
    font-size: 48px;
  }
  
  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .author-name {
    font-size: 16px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .btn,
  .mobile-toggle,
  .gallery-btn,
  .testimonials-dots {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .section,
  .stats-section,
  .testimonials-section {
    padding: 20px 0;
  }
}
