body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.back-link {
    margin-bottom: 20px;
    display: inline-block;
    padding: 0.2rem 1rem;
    border: 1px solid #006699;         /* warna biru gelap */
    color: #006699;                    /* teks biru */
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;                /* opsional: sudut sedikit membulat */
    font-size: 1.1rem;                 /* sesuaikan ukuran font */
    transition: background-color 0.3s, color 0.3s;
  }
  
  .back-link:hover {
    background-color: #e6f4fa;         /* efek hover: biru muda */
    color: #004466;
    border-color: #004466;
  }
  .p-awal{
    font-size: 17px !important;
  }
.about-section h1 {
  font-weight: 700;
  color: #006699;
}

.about-section p {
  font-size: 1.3rem;
}

.doc-links a {
  display: inline-block;
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #004f70;
  border-bottom: 2px solid #004f70;
  padding-bottom: 2px;
}

.doc-links a:hover {
  text-decoration: underline;
}

.doc-links i {
  margin-left: 0.5rem;
}

.img-wrapper {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
    .img-wrapper {
      position: relative;
      overflow: hidden;
      clip-path: ellipse(97% 100% at 0% 0%);
      background-color: #fefefe;
    }
  
    .img-wrapper img {
      width: 100%;
      height: 430px;
      display: block;
      object-fit: cover;
      object-position: center;
    }
  }

@media (max-width: 768px) {
  .img-wrapper img {
    border-radius: 0;
  }
}
