 
/* Custom CSS for Hero Section */
#hero {
  background-color: #f8f9fa;
 /* Default background color */
}
/* Mobile responsiveness */
@media (max-width: 576px) {
  #hero {
      padding-top: 80px;
      padding-bottom: 80px;
 }
  #hero h1 {
      font-size: 2.5rem;
 }
  #hero p {
      font-size: 1.25rem;
 }
}
.testimonial-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 18px;
  margin-bottom: 10px;
}
.testimonial-author {
  font-style: italic;
  color: #666;
}
.step {
  height: 100%;
}
.step .card {
  height: 100%;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.step .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.step .step-indicator {
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
.step .step-title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.card-text, .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  box-orient: vertical;
  line-clamp: 2;
}

/* Question   Css  */

.question__header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.question__header h2 {
  margin: 0;
  color: #333;
}

.pure-button {
  background-color: #ff4c4c;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.pure-button svg {
  margin-right: 0.5rem;
}

.mainDiv {
  margin: 0 auto;
  padding: 1.5rem;
}

.questionBody {
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.sidebar {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-left: 0.5rem;
}

.questionBody h1 {
  color: #333;
  margin: 1rem 0;
}

.options-list {
  list-style-type: none;
  padding: 0;
}

.option {
  position: relative;
  background-color: #f9f9f9;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: medium;
}

.option::before {
  content: counter(option-counter) ". ";
  counter-increment: option-counter;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-weight: bold;
  color: #333;
}

ol {
  counter-reset: option-counter;
}

.card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #e9f7ef61;
  border-radius: 5px;
  border: 1px solid #4CAF50;
}

.underline {
  text-decoration: underline;
}

.text-answer {
  color: #33333384;
}

.section__heading{
  margin: 5px;
}

.btn-primary{
  margin-top: 6px;
}

.relatedQuestions h2{
  font-size: larger;
  font-weight: 600;
}

@media (max-width: 576px) {

  .mainDiv, .questionBody {
    padding: 6px !important;
  }

  .question__header h2{
    font-weight: 600;
  }
  h2{
    font-size: large;
  }
  h3{
    font-size: larger;
  }
  .mainDiv .card{
    margin: 5px;
  }

  .sidebar {
    margin: 0 auto !important;
  }

  #footer{
    margin: 0 auto !important;
  }

  .relatedQuestionSet {
    padding: 6px !important;
  }

}
