/* BANNER */
.process-banner {
  background: url('./image/img9.png') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.process-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.process-banner .container {
  position: relative;
  z-index: 2;
}
.process-banner h1 {
  font-size: 40px;
  font-weight: bold;
}

/* PROCESS */
.process-img {
  width: 100%;
  border-radius: 12px;
}

.step {
  display: inline-block;
  background: #0d6efd;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* LIST */
.process-section ul {
  padding-left: 18px;
}
.process-section li {
  margin-bottom: 5px;
}

/* CTA */
.cta-section {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  color: white;
  padding: 50px 20px;
  border-radius: 12px;
  margin: 30px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .process-banner {
    height: 200px;
    text-align: center;
  }
}