
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

/* Container styling */
section {
    max-width: 1000px;
    max-height: 1000px;
    height: 100%;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Title and list styling */
h2 {
    color: #0056b3;
    margin-bottom: 15px;
    text-align: center;
}

ul {
    list-style-type: none;
        
}

ul li {
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;

}

/* Bullet point customization */
ul li::before {
    content: "•";
    color: #0056b3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
