.banner {
    position: relative;
    height: 80vh;
    background: url('../image/fraud.webp')
                center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 56, 56, 0.55);
    z-index: 1;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
  }
  
  .banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .banner-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .banner-tabungan {
      height: 70vh;
      padding: 10px 0;
    }
  
    .banner-title {
      font-size: 2rem;
    }
  
    .banner-text {
      font-size: 1rem;
    }
  
  }

  .section {
    background: linear-gradient(to bottom, #ffffff, #f5f9f7);
    padding-top: 20px;
    padding-bottom: 30px;
    font-family: "Poppins";
    color: #333;
    text-align: center;
  }
.container {
    max-width:1200px;
    margin:0 auto;
}

.blog-wbs {
  background: linear-gradient(to bottom, #ffffff, #f5f9f7);
  padding: 40px 20px;
  font-family: "Poppins";
  color: #333;
}

.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; 
  align-items: flex-start; 
}

.blog-container {
  flex: 2;
  min-width: 320px;
}

.blog-container h2 {
  color: #004085;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.blog-container p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.wbs-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.wbs-container h2 {
  color: #0B3D91;
  margin-bottom: 10px;
}

.wbs-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.wbs-form input,
.wbs-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.wbs-form button {
  padding: 12px;
  background: #0B3D91;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.wbs-form button:hover {
  opacity: 0.9;
}

.wbs-button {
  display: inline-block;
  padding: 12px 18px;
  background: #0B3D91;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
}

.wbs-button:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .blog-wrapper {
    justify-content: center;
    display: grid;
    width: 100%;
  }

  .blog-container{
    width: 100%;
    justify-content: center;
  }

  .blog-container h2 {
    text-align: center;
    padding-right: 25px;
  }
  .blog-container p {
    text-align: justify;
    padding-right: 25px;
  }

  .blog-wbs {
    padding: 20px 10px;
    justify-content: center;
  }

  .blog-container {
    padding: 10px;
    width: 100%;
  }

  .blog-container h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .blog-container p {
    font-size: 0.95rem;
  }
}
