
section {
  display: flex;
  justify-content: center;

}
#section-header {
  background: #0B1A63;
  
  min-height: 300px;
  position: relative;
}
.page-title{
  color: #FFF;
  position: absolute;
  bottom: 30%;
}


.content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.content-left .photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.content-left .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  flex: 2;
}

.box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.box:hover {
  transform: translateY(-5px);
  background: rgba(62, 133, 221, .2);
}

.box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.box span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #333;
}




@media (max-width: 768px) {

  #section-header {
    min-height: 300px;
  }
  .page-title{
    bottom: 20% !important;

  }


  .content-wrapper {
    flex-direction: column-reverse; /* content-right di atas, content-left di bawah */
    gap: 20px;
    justify-content: center;
    align-items: center;

    margin: 0px 20px;
  }

  .content-right {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom grid */
    gap: 20px;
  }

  .content-left {
    flex-direction: row; /* kalau mau foto berdampingan di mobile */
    gap: 10px;
    margin-top: 50px;
  }

  .content-left .photo {
    width: 50%;
  }



}