/* Default styles for the icon box */
.sc-icon-box.mhr {
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 20px;
  position: relative;
}

/* When hovered */
.sc-icon-box.mhr:hover {
  background-color: #fc9c48;
}

/* Text color change on hover */
.sc-icon-box.mhr:hover .half-title {
  color: white;
}

.sc-icon-box.mhr:hover .icon-box-content p {
  color: white; /* Change text color to white */
}

/* Icon hover effect */
.sc-icon-box.mhr:hover i {
  background-color: white;
  color: linear-gradient(to bottom, #fc9c48 0%, #ffbd7a 100%);
}

/* Text color change for h6, h5, and p inside .icon-box-content on hover */
.icon-box-content:hover h6,
.icon-box-content:hover h5,
.icon-box-content:hover p {
  color: white;
  transition: color 0.3s ease;
}
.process-section {
  bottom: 20rem;
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.process-header h2 span {
  background: linear-gradient(to bottom, #fc9c48 0%, #ffbd7a 100%);
  padding: 5px 10px;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
}

.process-header p {
  font-size: 12px;
  margin-top: -34px;
  position: relative;
  left: 15rem;
  color: #333;
}


.accordion {
  margin-top: 30px;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  /*border: 1px solid #333;*/
  transition: all 0.6s ease;
  /*border: 1.5px solid black;*/
  box-shadow: 0 4px 0px black;
}

/* Small devices (phones) */
@media screen and (max-width: 600px) {
.accordion {
  margin-top: 30px;
  padding:20px;
}
}

/* Medium devices (tablets) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .accordion {
  margin-top: 30px;
  padding:20px;
}
}

.accordion-item.active {
  background: linear-gradient(to bottom, #fc9c48 0%, #ffbd7a 100%);
  transition: transform 0.6s;
  /*border: 1.5px solid black;*/
  box-shadow: 0 4px 0px black;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 15px;
}

.accordion-header .step {
  font-size: 24px;
  font-weight: 700;
  min-width: 40px;
}

.accordion-header h3 {
  flex-grow: 1;
  font-weight: 600;
  font-size: 16px;
}

.accordion-header .toggle {
  font-size: 20px;
  font-weight: 700;
  background: none;
  border-radius: 20px;
  width: 28px;
  height: 28px;
  position: relative;
  bottom: 0px;
  cursor: pointer;
  border: 0.5px solid black;
}

.accordion-body {
  padding: 0 20px 20px 20px;
  display: none;
  font-size: 13px;
  color: #111;
  line-height: 1.5;
}

.accordion-item.active .accordion-body {
  display: block;
}





