/** Shopify CDN: Minification failed

Line 40:0 Unexpected "}"

**/
:root {
  --bg: #f8f9fb;
  --accent: #0b69ff;
  --accent-dark: #0849b4;
  --muted: #6b7280;
  --dark: #0b2140;
  --radius: 14px;
  --shadow-light: rgba(11,33,64,0.08);
  --shadow-heavy: rgba(11,33,64,0.12);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;
}
.triangle-support-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 24px;
  font-family: var(--font-body);
  color: var(--dark);
  background: #f8f9fb;
  border-radius: 24px; /* more rounded */
  box-shadow: 0 20px 40px rgba(11,33,64,0.08); /* subtle depth */
}

.banner {
  background: #ffffff;
  border-radius: 24px; /* more rounded */
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(11,33,64,0.08); /* soft elevation */
  border: 1px solid #e6ebf1;
}



}

.banner h1 {
  margin: 0;
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.banner-sub {
  color: var(--muted);
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.5;
}

.content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 20px; /* smoother, more premium look */
  box-shadow: 0 12px 24px rgba(11,33,64,0.06);
  border: 1px solid #e6ebf1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(11,33,64,0.1);
}

.highlight-section {
  border-left: 6px solid var(--accent);
  padding-left: 22px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.highlight-text {
  background: linear-gradient(90deg, rgba(11,105,255,0.15), rgba(11,105,255,0.07));
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.highlight {
  color: var(--accent-dark);
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .banner {
    padding: 40px 20px;
  }
  .banner h1 {
    font-size: 28px;
  }
  .section {
    padding: 24px 16px;
  }
  .section h2 {
    font-size: 20px;
  }
}
