/* INFORMASI PUBLIK PAGE SPECIFIC STYLES */
.informasi-publik-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.informasi-publik-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-pattern.png') repeat;
  opacity: 0.05;
}

.informasi-publik-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.informasi-publik-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.informasi-publik-content {
  padding: 60px 0;
  background-color: #f5f8fb;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.blue-frame {
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
}

.blue-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.blue-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.informasi-publik-text-content {
  color: white;
  position: relative;
  z-index: 2;
  text-align: left;
}

.informasi-publik-text-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.informasi-publik-text-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.informasi-publik-text-content ul {
  margin: 15px 0;
  padding-left: 20px;
  text-align: left;
}

.informasi-publik-text-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .informasi-publik-hero {
    padding: 100px 20px 60px;
  }
  
  .informasi-publik-hero h1 {
    font-size: 2rem;
  }
  
  .informasi-publik-hero p {
    font-size: 1rem;
  }
  
  .blue-frame {
    padding: 30px 20px;
  }
  
  .informasi-publik-text-content h2 {
    font-size: 24px;
  }
  
  .informasi-publik-text-content p {
    font-size: 16px;
  }
  
  .informasi-publik-text-content li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .informasi-publik-hero h1 {
    font-size: 1.8rem;
  }
  
  .blue-container {
    padding: 0 15px;
  }
  
  .blue-frame {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .blue-frame::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .informasi-publik-text-content h2 {
    font-size: 22px;
  }
  
  .informasi-publik-text-content p {
    font-size: 15px;
  }
  
  .informasi-publik-text-content li {
    font-size: 14px;
  }
}