body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #4a47a3;
}

.container {
    width: 80%;
    margin-top: 5%;
    margin-bottom: 5%;
   margin-left: 8%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

h1 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: url('checkmark.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin: 10px 0;
    text-align: center;
}

.highlight {
    font-weight: bold;
    color: #007BFF;
}
@media ( max-width: 768px){
    .container {
        width: 85%;
        margin-top: 25px;
        margin-bottom: 25px;
       margin-left: 21px;
        background: white;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    img {
        width: 80%;
        max-width: 250px;
        border-radius: 10px;
    }
    
    h1 {
        color: #333;
        font-size: 22px;
        font: bold;
    }
    p {
        font-size: 15px;
    }
    ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }
    
    ul li {
        background: url('checkmark.png') no-repeat left center;
        background-size: 20px;
        padding-left: 10px;
        margin: 10px 0;
        text-align: center;
        
    }
    
    .highlight {
        font-weight: bold;
        color: #007BFF;
    }
}