
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
font-size:20px;
line-height:1.7;
background:#f4f6f9;
}

/* HEADER IMAGE */

.page-header{
height:30vh; /* 20–30% of screen */
background:url('../images/innerbanner.jpg') center/cover no-repeat;
position:relative;
}

/* overlay for readability */

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.5);

display:flex;
align-items:center;
justify-content:center;
}

.overlay h1{
color:white;
font-size:36px;
}

/* BREADCRUMB */

.breadcrumb{
background:#e9eef3;
padding:12px 0;
font-size:18px;
}

.container{
width:90%;
max-width:1000px;
margin:auto;
}

/* CONTENT */

.content{
background:white;
padding:40px 0;
margin-top:20px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.content h2{
color:#383b6e;
margin-bottom:20px;
}

.content h3{
margin-top:20px;
color:#2f3483;
}

.content p{
margin-bottom:15px;
}

/* CHECK LIST */

.check-list{
list-style:none;
padding-left:0;
}

.check-list li{
position:relative;
padding-left:30px;
margin-bottom:10px;
}

.check-list li::before{
content:"✔";
position:absolute;
left:0;
color:#4caf50;
font-weight:bold;
}

/* FOOTER */

footer{
background:#383b6e;
color:white;
text-align:center;
padding:15px;
margin-top:30px;
}

/* RESPONSIVE */

@media(max-width:768px){

.overlay h1{
font-size:26px;
}

body{
font-size:18px;
}

.page-header{
height:25vh;
}

}

@media(max-width:420px){
    .page-header{
    
    background:url('../images/mobileinnerbanner.jpg') center/cover no-repeat;
   
    }
}
.check-list{
list-style:none;
padding-left:1.5em;
}

.check-list li{
position:relative;
padding-left:30px;
margin-bottom:10px;
}

.check-list li::before{
content:"✔";
position:absolute;
left:0;
top:0;
color:#383b6e;
font-weight:bold;
}


/* main list */

.main-list{
list-style:none;
padding-left:0;
}

.main-list > li{
margin-bottom:15px;
font-weight:bold;
}

/* sub list */

.sub-list{
list-style:none;
margin-top:8px;
padding-left:25px;
}

.sub-list li{
font-weight:normal;
margin-bottom:6px;
position:relative;
padding-left:20px;
}

/* add arrow or check icon */

.sub-list li::before{
content:"✔";
position:absolute;
left:0;
color:#383b6e;
font-size:14px;
}

.bank-table{
width:100%;
border-collapse:collapse;
margin-top:20px;
font-size:20px;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* header */

.bank-table th{
background:#383b6e;
color:white;
padding:12px;
text-align:left;
}

/* cells */

.bank-table td{
padding:12px;
border-bottom:1px solid #ddd;
}

/* alternate rows (VERY LIGHT COLOR) */

.bank-table tbody tr:nth-child(even){
background:#f7f9fc;
}

/* hover effect (optional) */

.bank-table tbody tr:hover{
background:#eef3ff;
}

/* responsive */

@media(max-width:768px){

.bank-table{
font-size:18px;
}

}