/** Shopify CDN: Minification failed

Line 71:0 Unexpected "<"
Line 119:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  gap: 1.5rem;
}

.banner-content {
  flex: 1 1 60%;
  max-width: 57%;
}
 .banner-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #1D1B14;
    line-height: 60px;
  }
 .banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

.banner-content h1, .banner-content h2, .banner-content h3 {
  margin-bottom: 1rem;
}

.banner-image {
  flex: 1 1 40%;
  max-width: 40%;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .banner-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .banner-content, .banner-image {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .banner-content h2 {
    font-size: 20px; 
    line-height: 1.5;
}
  .banner-content p {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}
}
<style>
.why-packsoon {
  padding: 2rem 1rem;
  border: 1px solid #ccc;
  max-width: 1200px;
  margin: 0 auto;
}

.why-packsoon h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background-color: #ccc;
}

.why-block {
  background: white;
  padding: 1.5rem;
  text-align: center;
}

.why-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-block .desc {
  font-size: 0.95rem;
  color: #333;
}

/* Mobile tweak for readability */
@media (max-width: 768px) {
  .why-packsoon h2 {
    font-size: 1.5rem;
  }

  .why-block {
    padding: 1rem;
  }
}
</style>