.page-container{
    margin-top: 5%;
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.page-text{
   margin-left: 3%;
    margin-top: 2%;
    flex: 1 1 50%;
    max-width: 600px;
}

.page-text h3{
  margin-top: 4%;
      color: #1a4b84;
  margin-bottom: 10px;
  font-size: 18px;

}

.page-text h1 {
  color: #002b70;
  margin-bottom: 20px;
  font-size: 26px;
}

.page-text p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-image {
  flex: 1 1 45%;
}

.page-image img {
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  background-color: #002b70;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #004aad;
}

/*----------Process flow---*/
.process-section{
    background: #ffffff;
    padding: 60px 10%;
    text-align: center; 
}

.proess-section h2{
    color:#002b70;
    margin-bottom: 10px;
}

.process-section p{
    color: #555;
    margin-bottom: 40px;
}

.process-section p{
  
    color: #555;
    margin-bottom: 40px;
}

.process-flow{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.process-step{
    background-color: #f5f8ff;
    border: 1px solid #d0e0ff;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    transition:0.3s;
}

.process-step:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .page-container {
    flex-direction: column;
    text-align: center;
  }
  .page-image {
    order: -1;
  }
}