   

.printing-section {
      font-family: 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0px;
      line-height: 1.6;
      background-color:rgba(197, 218, 182, 0.22);
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .printing-material-content{
      padding: 30px;
      margin:4em auto;
      width: 100%;
  }
  .printing-card {
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding:0px;
      margin: 20px 10px;
      max-width: 1000px;
      width: 100%;
      /* background: #ffffff; */
      border-radius: 0px;
      transition: transform 0.2sease-in-out, box-shadow 0.2sease-in-out;
      border: 2px solid #87ceeb;
  }
  .printing-card img {
    max-width: 300px;
    height: 200px;
    width: 200px;
    margin: 0;
    border-radius: 0px;
}
.content {
  max-width: fit-content;
  text-align: left;
}
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}
.quantity {
  font-size: 18px;
  color: #34495e;
  margin-bottom: 10px;
  font-weight: 600;
}
.instruction {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.5;
}
.printing-header {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #009DCA; /* Sky blue header */
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .printing-card {
    flex-direction: column;
    text-align: center;
  }

  .content {
    padding: 0 20px;
  }
}

/* Infographic Container */
.infographic-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Printing Card */
.printing-card {
  /* background-color: #ffffff; */
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.printing-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  width: 60px;
  height: 60px;
  margin: 20px auto;
  fill: #4caf50; /* Change color as needed */
}

/* Content */
.content {
  padding: 10px 20px;
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.quantity {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

.label {
  font-weight: bold;
  color: #4caf50;
}

.instruction {
  font-size: 14px;
  color: #777;
}
