/* Product Description Styling */
.product-description {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 30px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-description h2 {
  color: #0056b3;
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 3px solid #0056b3;
  padding-bottom: 10px;
}

.product-description p {
  margin-bottom: 15px;
}

.product-description strong {
  color: #0056b3;
  font-weight: 600;
}

.product-description ul {
  margin: 15px 0;
  padding-left: 25px;
  list-style-type: disc;
}

.product-description li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-description em {
  color: #666;
  font-style: italic;
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0056b3;
  border-radius: 4px;
}

.usa-badge {
  background: #0056b3;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin: 10px 0;
  font-size: 14px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .product-description {
    padding: 20px;
    margin: 15px;
  }

  .product-description h2 {
    font-size: 24px;
  }
}