/** Shopify CDN: Minification failed

Line 19:19 Expected identifier but found whitespace
Line 19:21 Unexpected "{"
Line 19:30 Expected ":"
Line 20:10 Expected identifier but found whitespace
Line 20:12 Unexpected "{"
Line 20:21 Expected ":"
Line 24:12 Expected identifier but found whitespace
Line 24:14 Unexpected "{"
Line 24:23 Expected ":"
Line 24:47 Expected ":"

**/


/* CSS from section stylesheet tags */
.pourquoi-section {
  background-color: {{ section.settings.bg_color }};
  padding: {{ section.settings.padding }};
}

.pourquoi-container {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pourquoi-title {
  text-align: center;
  margin-bottom: 40px;
}

.pourquoi-title h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.pourquoi-title span {
  background: linear-gradient(90deg,#2daae1 0%,#99c32c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pourquoi-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pourquoi-columns {
    grid-template-columns: 1fr;
  }
}

.pourquoi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pourquoi-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.check-icon {
  min-width: 24px;
  height: 24px;
  margin-top: 2px;
}