/** Shopify CDN: Minification failed

Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:29 Expected ":"
Line 22:20 Expected identifier but found whitespace
Line 22:22 Unexpected "{"
Line 22:31 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:icons-with-image-content (INDEX:191) */
:root {
  --timeline-bg: {{ section.settings.background_color }};
  --timeline-text: {{ section.settings.text_color }};
  --timeline-accent: {{ section.settings.accent_color }};
}

.timeline-section {
  background: var(--timeline-bg);
  padding: 60px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.timeline-left {
  flex: 1 1 45%;
  text-align: center;
}

.timeline-left img {
  max-width: 100%;
  height: auto;
  display: block;
}

.timeline-right {
  flex: 1 1 50%;
}

.timeline-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--timeline-accent);
  line-height: 1.2;
  margin-bottom: 24px;
}

.timeline-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.timeline-list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  color: var(--timeline-text);
  margin: 12px 0;
  padding-left: 28px;
}

.timeline-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--timeline-accent);
  font-weight: bold;
}

.timeline-btn {
  display: inline-block;
  background: var(--timeline-accent);
  color: #fff;
  font-weight: 600;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 12px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.timeline-btn:hover {
  background: #8f2238;
}

@media (max-width: 992px) {
  .timeline-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    text-align: center;
  }

  .timeline-right {
    text-align: center;
  }

  .timeline-list li {
    padding-left: 0;
  }

  .timeline-list li::before {
    position: static;
    margin-right: 8px;
  }
}
/* END_SECTION:icons-with-image-content */