/** Shopify CDN: Minification failed

Line 10:12 Expected identifier but found whitespace
Line 10:21 Unexpected ";"

**/
.why-unity-section {
  padding: 48px 0;
  background: #f5f5f5;
}  position: relative;

.why-unity-container {
  text-align: center;
}

.why-unity-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-foreground-heading, var(--color-foreground));
    text-align: center;
}

.why-unity-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.why-unity-column {
  flex: 1 1 180px;
  max-width: 220px;
  padding: 16px;
  text-align: center;
}

.why-unity-icon {
  margin-bottom: 12px;
}

.why-unity-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.why-unity-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-foreground-heading, var(--color-foreground));
}

.why-unity-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-foreground);
  margin: 0;
}

@media (max-width: 749px) {
  .why-unity-columns {
    flex-direction: column;
    align-items: center;
  }
  
  .why-unity-column {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}


