body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

p{
  color: black;
}

.product-details-container {
  max-width: 800px;
  margin: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.product-details-header h1 {
  text-align: center;
  color: #675c9c;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: 700;
}

.product-details-content h2 {
  color: #675c9c;
  margin-top: 20px;
  font-size: 1.8em;
  font-weight: 600;
}

.product-details-content ul, .product-details-content ol {
  margin: 10px 0;
  padding-left: 20px;
}

.product-details-content ul li, .product-details-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-details-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-details-technical-data, .product-details-features, .product-details-application, .product-details-tools, .product-details-color, .product-details-expiry {
  margin-bottom: 25px;
}

.product-details-technical-data ul, .product-details-features ul, .product-details-application ol {
  list-style-type: disc;
}

.product-details-application ol {
  list-style-type: decimal;
}

.product-details-tools p, .product-details-color p, .product-details-expiry p {
  font-weight: bold;
}

.download-section {
  text-align: center;
  margin-top: 30px;
}

/* From Uiverse.io by vinodjangid07 */
.Download-button {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  padding: 12px 20px;
  color: white;
  background: rgb(103, 92, 156);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em rgba(59, 48, 78, 0.527);
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.Download-button svg {
  margin-right: 8px;
  width: 25px;
}

.Download-button:hover {
  box-shadow: 0 0.5em 1.5em -0.5em rgba(88, 71, 116, 0.627);
}

.Download-button:active {
  box-shadow: 0 0.3em 1em -0.5em rgba(88, 71, 116, 0.627);
}

.Download-button::before {
  content: "";
  width: 4px;
  height: 40%;
  background-color: white;
  position: absolute;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  left: 0;
  transition: all 0.2s;
}

.Download-button::after {
  content: "";
  width: 4px;
  height: 40%;
  background-color: white;
  position: absolute;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  right: 0;
  transition: all 0.2s;
}

.Download-button:hover::before,
.Download-button:hover::after {
  height: 60%;
}
/*image style for details*/
/* Add to your style.css or style2.css */
.color-image-container {
    margin: 20px 0;
    text-align: center;
}

.color-chart-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}