/* General Reset */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

/* Header */
.header {
  background-color: teal;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Product Info Section */
.enhanced-info {
  animation: fadeInScale 0.6s ease-in-out;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;

}

.product-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.enhanced-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* PDF Download Button */
.pdf-link {
  display: inline-block;
  background-color: #1a4d2e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pdf-link:hover {
  background-color: #145232;
}

/* Animation */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
