/** Shopify CDN: Minification failed

Line 46:14 Expected identifier but found whitespace
Line 46:16 Unexpected "{"
Line 46:25 Expected ":"
Line 46:51 Expected ":"
Line 47:17 Expected identifier but found whitespace
Line 47:19 Unexpected "{"
Line 47:28 Expected ":"
Line 47:57 Expected ":"

**/
.features {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  margin: 20px auto;
  max-width: 650px;
}

.feature-column {
  width: 50%; /* Set to 50% for two columns */
  padding: 0 10px; /* Optional: Add padding between columns */
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  margin-right: 10px; /* Adjust spacing between icon and text */
}

.icon img {
    margin-top: 10px;
}

.feature-item p {
    margin: 0; font-size: 18px; line-height: 40px;
}



.section-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 750px) {
    .feature-column {
      width: 100%; /* Stack on small screens */
    }
}