/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 176:0 Unexpected "<"

**/
<style>
  .benefits-section {
    background: #FAFAFA;
    padding: 2rem 1rem;
  }
  
  .benefits-section__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefits-section__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .benefits-section__title {
    font-family: 'Avenir Next Condensed', 'Avenir', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #2C2A29;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .benefits-section__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #2C2A29;
    opacity: 0.8;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }
  }
  
  .benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 0;
    background: #ffffff;
    transition: all 0.3s ease;
    border: none;
    position: relative;
  }
  
  .benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #73B4C0;
    transition: width 0.3s ease;
  }
  
  .benefit-card:hover::after {
    width: 80%;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 42, 41, 0.1);
  }
  
  .benefit-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #73B4C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover .benefit-card__icon {
    background: #70A2B8;
    transform: scale(1.05);
  }
  
  .benefit-card__icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
  }
  
  .benefit-card__icon--accent {
    background: #FF9E1B;
  }
  
  .benefit-card:hover .benefit-card__icon--accent {
    background: #e68a0f;
  }
  
  .benefit-card__icon--dark {
    background: #70A2B8;
  }
  
  .benefit-card:hover .benefit-card__icon--dark {
    background: #5d8a9d;
  }
  
  .benefit-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C2A29;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  
  .benefit-card__description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2C2A29;
    opacity: 0.8;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .benefits-section {
      padding: 3rem 1rem;
    }
    
    .benefits-section__title {
      font-size: 2.25rem;
    }
    
    .benefits-section__header {
      margin-bottom: 2.5rem;
    }
    
    .benefit-card {
      padding: 2rem 1.5rem;
    }
    
    .benefit-card__icon {
      width: 70px;
      height: 70px;
    }
    
    .benefit-card__icon svg {
      width: 35px;
      height: 35px;
    }
  }
</style>
