main {
  margin-top: 11em;
}

.text-justify {
  text-align: justify;
}

.need-style {
  position: relative;
  border-radius: 10px;
  border-radius: 8px;
  padding: 5em 9px;
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* box-shadow:inset 5px 7px 26px darkslategray; */
  box-shadow: 0px 0px 0px 5px #A0A0A0, inset 0px 10px 27px -8px #ae7504, inset 0px -10px 27px -8px #06823a, 5px 5px 15px 5px rgba(198, 212, 10, 0.722);
  box-shadow: 0px 0px 0px 5px #A0A0A0, inset 0px 10px 27px -8px #78860f, inset 0px -10px 27px -8px #0c06bc, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.process-style {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 2em 9px;
  margin: -0.5em;
  box-sizing: border-box;
  border: 2px dashed darkslategray;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-style h3 {
  text-align: center;
}

.process-style:hover {
  border: 2px solid darkslategray;
  box-shadow: 0 4px 8px darkslategray;
}

.impact-style {
  background: linear-gradient(to right, #2d2d2d, #2d2d2dd8);
  color: white;
  padding: 1.2em 2em;
  border-radius: 30px;
  box-shadow: 0 4px 8px lightblue;
}

.impact-style p {
  color: white;
}


.need1-style {
  border-radius: 50;
}


.plag-style {
  background-color: darkslategray;
  color: white;
  padding: 1.2em 2em;
  border-radius: 30px;
  box-shadow: 0 4px 8px lightblue;
}

.step-style {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

.step-style li {
  flex: 1 1 300px;
  list-style: none;
}

.step-style li>div {
  background: #ddd;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.step-style li::before {
  content: "\2022";
  color: darkkhaki;
  border-radius: 40px;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  width: 0.45em;
  height: 0.35em;
  margin-left: -1em;
  position: relative;
  top: 5px;
}

.stage-style {
  background-color: darkslategray;
  color: white;
  padding: 1.2em 2em;
  border-radius: 30px;
  box-shadow: 0 4px 8px lightblue;
  margin-bottom: 2em;
  transition: transform 0.3s ease;
}

.stage-style:hover {
  transform: translateY(-10px);
}

.rated-thesis-style li::before {
  content: "\2605";
  color: gold;
  border-radius: 40px;
  font-size: 1.75rem;
  font-weight: bold;
  display: inline-block;
  width: 1.1em;
  margin-left: -1em;
  position: relative;
  top: 5px;
  left: 2px;
}

.check-style {
  list-style-type: none;
  margin-top: 0px;
}

.check-style li::before {
  content: "\2714";
  color: green;
  border-radius: 40px;
  font-size: 1.75rem;
  font-weight: bold;
  display: inline-block;
  width: 1.1em;
  margin-left: 1em;
  position: relative;
  top: 5px;
  left: 2px;
}

.adv-style {
  background-color: #3F0436;
  color: white;
  height: 80%;
  padding: 20px;
  margin: 0.5em;
  border-radius: 10px;
  box-shadow: 0 4px 8px lightblue;
}

.adv-style:hover {
  box-shadow: 4px 8px 34px #3F0436;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  border: none;
  background: #0c06bc;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  background: #fff;
  padding: 0 15px;
}

.faq-answer p {
  padding: 10px 0;
}