.akreditasi {
  padding: 150px 20px 50px; /* atas 100px biar turun, kanan-kiri 20px, bawah 50px */
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.akreditasi .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.akreditasi h2 {
  font-size: 28px;
  font-weight: 700; /* ini bikin bold */
  margin-bottom: 10px;
  color:#004aad;
}

.akreditasi p {
  font-size: 16px;
  margin-bottom: 20px;
}

.nilai-akreditasi {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.nilai-box {
  background: radial-gradient(circle, rgb(255, 245, 158), #be9201);
  padding: 20px 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nilai-box .grade {
  font-size: 90px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}

.nilai-box .score {
  font-size: 20px;
  margin-top: 8px;
}

.progress-wrapper {
  text-align: left;
}

.progress-item {
  margin-bottom: 15px;
}

.progress-item span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.progress {
  width: 100%;
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  height: 24px;
}

.progress-bar {
  background: linear-gradient(to right, #0155c4, #0f376b);
  height: 100%;
  text-align: right;
  padding-right: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  transition: width 1s ease-in-out;
}

.cek-link {
  margin-top: 25px;
  font-size: 15px;
}

.cek-link a {
  color: #0155c4;
  font-weight: 600;
  text-decoration: none;
}

.cek-link a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .akreditasi {
    padding: 90px 15px 30px; /* atas lebih kecil */
    margin: 0 auto;          /* reset margin biar tidak dobel */
  }
}