.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 40px 0;
}
/* Step card */
.step-item {
  border-radius: 18px;
  border: 2px solid #E0E2E3;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.step-image img {
  width: 100%;
  height: auto;
  max-width: 40px;
  margin: 0 auto 10px;
  flex-shrink: 0;
}
/* Typography */
.step-item h3 {
  color: #333F48;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  min-height: 60px;
  align-items: center;
  align-content: center;
}
.step-item h3 span {
  display: inline;
  flex-shrink: 0;
}
.step-item p {
  font-size: 13px;
  color: #333F48;
  margin-bottom: 14px;
}
.step-item p span {
  display: inline;
  flex-shrink: 0;
}
.step-item p a {
  display: inline;
  flex-shrink: 0;
}
/* Button */
a#btn-showroom {
  margin-bottom: 100px;
  padding: 16px 32px;
  background: linear-gradient(to bottom, #94193b 0%, #94193b 50%, #00a7b5 50%, #00a7b5 100%);
  background-size: 100% 200%;
  color: #ffffff;
  display: flex;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  gap: 6px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
}
a#btn-showroom:hover {
  background-position: 0 100%;
  transform: translateY(-1px);
  font-weight: 600;
}
a#btn-showroom::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid #00000000;
  border-bottom: 6px solid #00000000;
  border-left: 8px solid #ffffff;
  transition: transform 0.3s ease;
  display: none;
}
a#btn-showroom:hover::after {
  transform: translateX(3px);
  border-left: 8px solid #94193b;
  display: none;
}
/* Standard BreakPoints */
/* Mobile BreakPoint */
@media screen and (min-width: 1px) and (max-width: 375px) {
  section#content-section5 {
    padding-top: 25px;
  }
  a#btn-showroom {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .steps-grid {
    padding: 10px 0;
  }
}
/* Large Mobile BreakPoint */
@media screen and (min-width: 376px) and (max-width: 425px) {
  section#content-section5 {
    padding-top: 30px;
  }
  a#btn-showroom {
    margin-bottom: 40px;
  }
  .steps-grid {
    padding: 20px 0;
  }
}
/* Tablet BreakPoint */
@media screen and (min-width: 426px) and (max-width: 767px) {
  section#content-section5 {
    padding-top: 35px;
  }
  a#btn-showroom {
    margin-bottom: 40px;
  }
  .steps-grid {
    padding: 20px 0;
  }
}
/* Laptop BreakPoint */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#content-section5 {
    padding-top: 45px;
  }
}
/* Desktop BreakPoint */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  section#content-section5 {
    padding-top: 60px;
  }
}
/* Large Desktop BreakPoint */
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  section#content-section5 {
    padding-top: 70px;
  }
}
/* Extra-Large Desktop BreakPoint */
@media screen and (min-width: 2561px) and (max-width: 4000px) {
  section#content-section5 {
    padding-top: 80px;
  }
}
/* Wide Desktop BreakPoint */
@media screen and (min-width: 4001px) {
  section#content-section5 {
    padding-top: 100px;
  }
}