.combination-boards {
  padding: 30px 20px;
  /* background-color: #f0f0f0; */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.combination-boards .products-section {
  max-width: 1200px;
  margin: auto;
}

.combination-boards .product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.combination-boards .product {
  width: calc(50% - 10px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.combination-boards .product:hover {
  transform: scale(1.02);
}

.combination-boards .product h3 {
  background-color: #003b7a;
  color: #fff;
  margin: 0;
  padding: 10px;
  font-size: 18px;
}

.combination-boards .product img {
  width: 100%;
  height: 400px;
  display: block;
}

.combination-boards .product-description {
  background-color: #fff;
  margin-top: 40px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.combination-boards .product-description h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #003b7a;
  text-align: center;
}

.combination-boards .product-description p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .combination-boards .product {
    width: 100%;
  }

  .combination-boards .product-description h2 {
    font-size: 24px;
  }

  .combination-boards .product-description p {
    font-size: 15px;
  }
}
