/* Hint Questions Styles */
.hint-questions {
  margin-bottom: 30px;
  margin-top: 20px;
  padding: 5px;
  background-color: rgba(248, 247, 244, 0);
  border-radius: 10px;
}

.hint-questions-content {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
  text-align: center;
}

.hint-questions-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.hint-questions-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.hint-questions-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.hint-questions-content .question-section {
  margin-bottom: 24px;
}

.hint-questions-content ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.hint-questions-content li {
  margin-bottom: 8px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hint-questions h2 {
    font-size: 26px !important;
  }
  
  .hint-questions h3 {
    font-size: 16px !important;
  }

  .hint-questions h4 {
    font-size: 14px !important;
  }
  
  .hint-questions li {
    font-size: 10px !important;
  }
  
  .hint-questions {
    padding: 15px !important;
  }
}