/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  margin-bottom: 10px;
}

.breadcrumb span {
  color: #0077cc;
}

/* Top Section */
.top-section {
  background: #f1f1f1;
  padding: 30px 20px;
  margin-bottom: 40px;
}

.top-section h2 {
  color: #0077cc;
  border-left: 5px solid #0077cc;
  padding-left: 10px;
  margin: 0 0 10px;
}

.top-section p {
  color: #333;
  line-height: 1.6;
}

.top-section .highlight {
  color: #ff6600;
  font-weight: bold;
}

/* Product Layout */
.product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.product-image {
  flex: 1 1 150px;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border: 1px solid #ccc;
}

.product-content {
  flex: 2 1 300px;
  text-align: center;
}

.product-content h3 {
  margin: 0 0 10px;
  color: #222;
}

.product-content p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-content {
    max-width: 100%;
  }

  .product-image img {
    max-width: 100px;
  }
}
