﻿.logo {
  width: 164px;
}

.lead {
  font: 24px/28px "Open Sans";
}

#w-56 {
  width: 56%;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.product-box {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.title {
  text-align: center;
  color: #212121;
  margin-bottom: 15px;
}

.description {
  text-align: justify;
  color: #616161;
  line-height: 1.6;
  margin-bottom: 15px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 10px;
  color: #424242;
  display: flex;
  align-items: center;
}

.features li::before {
  content: "•";
  color: #009688;
  margin-right: 10px;
}

.image-section {
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}