/* Premium CSS Variables */
:root {
  --color-primary: #1282dd;
  --color-primary-light: #5baef4;
  --color-primary-dark: #0b599c;
  --color-accent: #9d50a5;
  --color-bg: #f5f8fc;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  
  /* Richer Gradients */
  --gradient-bg: linear-gradient(135deg, #f0f4fa 0%, #e1eaf7 50%, #f9f5fa 100%);
  --gradient-midnight: linear-gradient(135deg, #1282dd 0%, #9d50a5 100%);
  --gradient-glow: linear-gradient(135deg, rgba(18, 130, 221, 0.4) 0%, rgba(157, 80, 165, 0.4) 100%);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 99px;
  
  /* Premium Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(18, 87, 223, 0.05), border 1px solid rgba(255,255,255,0.8);
  --shadow-lg: 0 20px 40px rgba(18, 87, 223, 0.08), 0 10px 15px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 30px rgba(157, 80, 165, 0.3);
  
  --font-base: 'Heebo', sans-serif;
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Texture overlay for a physical premium feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.highlight { color: var(--color-primary); font-weight: 800; }

/* Utilities - Premium Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Header Element */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.1rem;
}

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

/* Custom Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: var(--color-primary);
  background-image: var(--gradient-midnight);
  color: white;
  box-shadow: 0 4px 15px rgba(157, 80, 165, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(157, 80, 165, 0.5);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-size: 1.25rem;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

/* Typography elements */
.main-title {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--color-text);
}

.main-title .highlight {
  background: var(--gradient-midnight);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-size: 3.2rem;
  color: var(--color-text);
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.35rem;
  color: var(--color-text-muted);
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lead-text {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-text);
  line-height: 1.5;
}

.body-text {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 120px;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 80, 165, 0.15) 0%, rgba(157, 80, 165, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(18, 130, 221, 0.1) 0%, rgba(18, 130, 221, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-box {
  z-index: 2;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 480px;
}

/* Heart Pulse Animation for Hero Graphic */
.circle-group { position: relative; width: 400px; height: 400px; display: flex; justify-content: center; align-items: center;}
.pulse-circle { position: absolute; border-radius: 50%; opacity: 0;}
.c1 { width: 180px; height: 180px; background: rgba(18, 130, 221, 0.4); animation: pulse 4s cubic-bezier(0.21, 0.53, 0.56, 1) infinite 0s; box-shadow: var(--shadow-glow);}
.c2 { width: 280px; height: 280px; background: rgba(157, 80, 165, 0.25); animation: pulse 4s cubic-bezier(0.21, 0.53, 0.56, 1) infinite 1.3s;}
.c3 { width: 400px; height: 400px; background: rgba(18, 130, 221, 0.1); animation: pulse 4s cubic-bezier(0.21, 0.53, 0.56, 1) infinite 2.6s;}

.icon-center {
  background: var(--gradient-midnight);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(157, 80, 165, 0.4);
  position: relative;
}
.icon-center::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Help Section */
.help-section {
  padding: 100px 0;
  background-color: var(--color-surface);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.help-card {
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.help-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(18, 130, 221, 0.12);
}

.help-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-midnight);
}

.card-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.card-title {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.card-notes {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

ol.custom-list {
  padding-right: 20px;
  list-style-type: none;
  counter-reset: custom-counter;
}

ol.custom-list > li {
  position: relative;
  margin-bottom: 15px;
  padding-right: 15px;
}

ol.custom-list > li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter) ".";
  position: absolute;
  right: -20px;
  top: 0;
  color: var(--color-primary);
  font-weight: 800;
}

ul.sub-list {
  padding-right: 20px;
  list-style-type: none;
  counter-reset: alpha-counter;
  margin-top: 10px;
}

ul.sub-list > li {
  position: relative;
  margin-bottom: 8px;
  padding-right: 10px;
}

ul.sub-list > li::before {
  counter-increment: alpha-counter;
  content: counter(alpha-counter, hebrew) ".";
  position: absolute;
  right: -15px;
  top: 0;
  color: var(--color-primary-light);
  font-weight: 600;
}


/* Media Section - Timeline Style */
.media-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

/* ─── Video Gallery ─────────────────────────────────────────────── */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.video-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(18, 130, 221, 0.08);
  border: 1px solid rgba(18, 130, 221, 0.1);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 130, 221, 0.16);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb-bg {
  width: 100%;
  height: 100%;
  background: var(--gradient-midnight);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-play-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding-right: 4px; /* optical center for play arrow */
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-info {
  padding: 20px 22px;
}

.video-date {
  display: inline-block;
  background: rgba(18, 130, 221, 0.1);
  color: var(--color-primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 5px;
}

.video-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ─── Video Modal ────────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.video-modal.open .video-modal-inner {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #111;
}

.video-modal-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.video-modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-player {
  width: 100%;
  display: block;
  background: #000;
  max-height: 70vh;
}

@media (max-width: 600px) {
  .video-modal-inner {
    width: 98%;
    border-radius: var(--radius-sm);
  }
  .play-btn {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
}

.media-timeline {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.media-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 4px;
  background: rgba(18, 87, 223, 0.2);
  transform: translateX(50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-dot {
  position: absolute;
  right: 50%;
  top: 20px;
  transform: translateX(50%);
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 4px solid var(--color-surface);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 25px;
  border-radius: var(--radius-md);
  margin-left: auto;
}

.media-date {
  display: inline-block;
  background: rgba(18, 87, 223, 0.1);
  color: var(--color-primary-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-outlet {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.media-title {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Footer Section */
.site-footer {
  background: var(--color-surface);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-icon {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}
.social-icon:hover { color: var(--color-primary); }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Contact the Nav special style */
.contact-nav-link {
  background: var(--gradient-midnight);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}
.contact-nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(157, 80, 165, 0.4);
  color: white !important;
}

/* ─── Contact Form Section ─────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background-color: var(--color-surface);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 45px;
  box-shadow: 0 15px 60px rgba(18, 130, 221, 0.08);
  border: 1px solid rgba(18, 130, 221, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 6px;
  background: var(--gradient-midnight);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.required {
  color: #e5495a;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 2px solid rgba(18, 130, 221, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 1.05rem;
  color: var(--color-text);
  background: #fafcff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab4c4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(18, 130, 221, 0.1);
  background: white;
}

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

.char-count {
  text-align: left;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.field-error {
  font-size: 0.9rem;
  color: #e5495a;
  margin-top: 6px;
  min-height: 18px;
  display: block;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.privacy-note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-note i {
  color: #4caf83;
}

.form-feedback {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-feedback.success {
  background: #e8f8f0;
  color: #1b7c4a;
  border: 1px solid #a8e6c6;
  display: block;
}

.form-feedback.error {
  background: #fff0f2;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
  display: block;
}

#submitBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive for contact form */
@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Animations */

.fade-in-up {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.3, 1), transform 1s cubic-bezier(0.25, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .hero-text-box {
    order: 2;
  }
  
  .hero-graphic {
    order: 1;
    height: 250px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .media-timeline::before {
    right: 25px;
    transform: none;
  }

  .timeline-dot {
    right: 15px;
    transform: none;
  }

  .timeline-content {
    width:calc(100% - 60px);
    margin-right: 60px !important;
    margin-left: 0 !important;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-right: 60px !important;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-link {
    font-size: 1rem;
  }
  
  .help-card {
    padding: 30px 20px;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .lead-text {
    font-size: 1.15rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
