/** Shopify CDN: Minification failed

Line 59:0 Unexpected "{"
Line 59:1 Expected identifier but found "%"
Line 59:51 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.our-values {
  padding: 40px 0px 80px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 60px;
  margin-bottom: 30px;
  color: white;
  letter-spacing: 0.18em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.value-item {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.value-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: black;
  letter-spacing: 2px;
}

.value-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

{% comment %}Responsive design for smaller screens{% endcomment %}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .our-values {
    padding: 40px 20px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .value-title {
    font-size: 20px;
  }
}