.assessment-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

.assessment-header {
  color: #000000;
  padding: 20px 0px 30px 0px;
  text-align: left;
}
.assessment-header h2 {
  margin-bottom: 1rem;
}

.assessment-header p {
  text-align: left;
  margin: 0 auto;
}

{# .progress-bar {
  background: #ecf0f1;
  height: 6px;
  border-radius: 3px;
  margin: 20px 0;
  overflow: hidden;
}#} 

.progress-fill {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.assessment-content {
  padding: 30px 40px 40px;
  background: #ececec;
}

.assessment-section {
  margin-bottom: 40px;
  display: none;
}

.assessment-section.active {
  display: block;
}


.section-subtitle {
  color: #000000;
  margin-bottom: 25px;
}

.question-group {
  border-radius: 10px;
  padding: 25px 0px;
  margin-bottom: 20px;
}

.question {
  color: #000000;
  margin-bottom: 15px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option:hover {
  border-color: #3498db;
  background: #f0f8ff;
}

.option.selected {
  border-color: #3498db;
  background: #e3f2fd;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.option input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.option label {
  cursor: pointer;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  color: #000000;
  flex: 1;
}

.assessment-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  justify-content: end;
}

.assessment-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
}

.btn-secondary:hover {

}

.assessment-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.assessment-results {
  display: none;
  text-align: center;
}

.score-display {
  color: #000000;
  padding: 10px 10px 0px 10px;
  margin-bottom: 0px;
  text-align: left;
}

.score-value,
.readiness-level span {
  font-size: 20px;
  font-weight: 700;
  font-family: Bariol;
}

.readiness-level {
  padding: 0px 20px 10px 10px;
  margin-bottom: 0px;
  font-weight: 600;
  text-align: left;
}
.readiness-level p {
  padding-top: 17px;
}

.level-beginner,
.level-developing,
.level-advanced,
.level-expert {
  color: #000000;
}

.recommendations {
  text-align: left;
  padding: 0px 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.recommendations h3 {
  color: #000000;
  margin-bottom: 15px;
}

.recommendations ul {
  list-style-type: none;
  padding: 0;
  padding-left: 0.5em;
}

.recommendations li {
  padding: 1px 0;
  padding-left: 20px;
  position: relative;
  color: #000000;
}

.recommendations li:before {
  content: "â†’";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  border-radius: 10px;
}
.cta-section h3 {
  margin-top: 0px;
}
.cta-button {
  background: white;
  color: #00b894;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  color: #00b894;
}

.section-progress {
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}
.bottom_section-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.bottom_section-buttons .btn-primary {
  background: #fff;
  color: #00b894;
}
.body-container-wrapper ul li {
  padding-left: 0px !important;
  text-indent: 0px !important;
}
.body-container-wrapper ul li:before {
  left: -25px !important;
}
@media (max-width: 768px) {
  .assessment-container {
    margin: 10px;
    border-radius: 4px;
  }
  .recommendations {
    padding: 0px;
  }
  .assessment-header {
    padding: 20px;
  }

  .assessment-content {
    padding: 20px 20px 40px;
    background: #ececec;
  }

  .assessment-navigation {
    gap: 15px;
  }
  .question-group {
    padding: 10px 0px;
  }
}
