.test-info-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 35px 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-info-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.test-info-section h2,
.test-info-section h3 {
  color: #007bff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.test-info-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.test-info-section h3 {
  font-size: 20px;
  margin-top: 30px;
}

.test-info-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.test-info-section ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.test-info-section ul li {
  list-style: disc;
  margin: 8px 0;
}

.test-search-box {
  margin-top: 30px;
}

.test-search-box input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.test-search-box input[type="text"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

.test-search-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.test-search-table th,
.test-search-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.test-search-table th {
  background-color: #007bff;
  color: #ffffff;
}

.test-search-table tr:nth-child(even) {
  background-color: #f7f7f7;
}

@media (max-width: 768px) {
  .test-info-section {
    padding: 25px 15px;
  }

  .test-search-table th,
  .test-search-table td {
    font-size: 14px;
    padding: 8px;
  }
}
