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

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

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

/* header */
header{
background:#383b6e;
color:white;
padding:20px;
text-align:center;
}

/* breadcrumb */
.breadcrumb{
background:#e9eef3;
padding:10px;
font-size:18px;
}

/* section */
.accordion-section{
padding:40px 0;
}

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

/* accordion */

.accordion{
margin-bottom:15px;
border-radius:6px;
overflow:hidden;
}

/* HEADER COLOR YOU REQUESTED */
.accordion-header{

width:100%;
text-align:left;
padding:15px;

background:#383b6e;
color:white;

border:none;
outline:none;
cursor:pointer;

font-size:20px;

transition:0.3s;

}

.accordion-header:hover{
background:#2b2f5a;
}

/* content */

.accordion-content{

background:white;
padding:0 15px;

max-height:0;
overflow:hidden;

transition:max-height 0.4s ease;

}

.accordion-content p{
padding:10px 0;
border-bottom:1px solid #ddd;
}

/* responsive */

@media(max-width:768px){

body{
font-size:18px;
}

.accordion-header{
font-size:18px;
}

}


/* header layout */

.accordion-header{
display:flex;
justify-content:space-between;
align-items:center;
}

/* icon style */

.accordion-header .icon{
font-size:22px;
font-weight:bold;
transition:0.3s;
}

/* active state */

.accordion-header.active .icon{
transform:rotate(45deg); /* + becomes × */
}

.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;
}

footer{

background: linear-gradient(90deg, #0e1144, #2f3483, #383b6e);
color:white;
text-align:center;
padding:15px;
margin-top:20px;

}


.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;
}

}
