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

body{
font-size:20px;
line-height:1.8;
background:#f4f6f9;
color:#333;
}

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

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

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

/* section */

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

/* headings */

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

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

/* text */

.policy 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:#383b6e;
font-weight:bold;
}

/* footer */

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

/* responsive */

@media(max-width:768px){

body{
font-size:18px;
}

}