/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:8 Expected identifier but found whitespace
Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 57:8 Expected identifier but found whitespace
Line 57:10 Unexpected "{"
Line 57:19 Expected ":"
Line 71:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Features Section Styles */
.features-section {
  padding: 80px 0;
  background-color: {{ section.settings.background_color | default: '#333333' }};
  color: {{ section.settings.text_color | default: '#ffffff' }};
}

.features-section .features-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: stretch;
}

.features-section .feature-column {
  padding: 0 15px;
  margin-bottom: 0;
  display: flex;
}

.features-section .feature-item {
  text-align: center;
  padding: 30px 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.features-section .feature-icon {
  margin-bottom: 25px;
  color: {{ section.settings.icon_color | default: '#ffffff' }};
}

.features-section .feature-icon svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
  stroke: currentColor;
}

.features-section .feature-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: {{ section.settings.text_color | default: '#ffffff' }};
  position: relative;
  padding-bottom: 15px;
}

.features-section .feature-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: {{ section.settings.text_color | default: '#ffffff' }};
}

.features-section .feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: {{ section.settings.text_color | default: '#ffffff' }};
  opacity: 0.9;
  text-align: center;
  max-width: 280px;
}

/* Grid System */
.features-section [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .features-section .col-lg-3 { 
    flex: 0 0 25%; 
    max-width: 25%;
    margin-bottom: 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .features-section .col-md-6 { 
    flex: 0 0 50%; 
    max-width: 50%;
    margin-bottom: 40px;
  }
  
  .features-section .col-md-6:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .features-section .col-sm-6 { 
    flex: 0 0 50%; 
    max-width: 50%;
    margin-bottom: 40px;
  }
  
  .features-section .col-sm-6:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-section .features-container {
    max-width: 1140px;
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-section .feature-title {
    font-size: 22px;
  }
  
  .features-section .feature-description {
    font-size: 14px;
  }
  
  .features-section .feature-icon svg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 50px 0;
  }
  
  .features-section .features-container {
    padding: 0 15px;
  }
  
  .features-section .feature-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .features-section .feature-column:last-child {
    margin-bottom: 0;
  }
  
  .features-section .feature-item {
    padding: 25px 15px;
  }
  
  .features-section .feature-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .features-section .feature-description {
    font-size: 14px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 0;
  }
  
  .features-section .features-container {
    padding: 0 10px;
  }
  
  .features-section .feature-title {
    font-size: 18px;
  }
  
  .features-section .feature-icon svg {
    width: 45px;
    height: 45px;
  }
}