/* ==== HEADER ==== */
.page-header {
  background-image: url('img/header1.png'); /* ganti dengan gambarmu */
  background-size: cover;
  background-position: center;
  height: 100px;
  color: white;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  padding: 20px;
  width: 100%;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header-content p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ==== MAIN CONTENT ==== */
.page-main {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #f8f9fa;
}

.content-card {
  background: white;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.content-card img {
  max-width: 60%;  
  display: block;   
  margin: 0 auto;   
  border-radius: 8px;
  height: auto;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .page-header {
    height: auto;
    padding: 50px 20px;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .page-header-content p {
    font-size: 1rem;
  }

  .content-card {
    padding: 20px;
  }
  .content-card img {
    max-width: 70%;
    display: block;   
    margin: 0 auto;   
    border-radius: 8px;
    height: auto;
  }
}
