body {
    background-color: white; /* Light background */
}

.container {
    margin-top: 50px;
}

h2 {
    margin-bottom: 20px; /* Spacing for headings */
}

.highlight-list {
    list-style-type: none; /* Remove default list styling */
    padding-left: 0; /* Remove left padding */
}

.highlight-list li {
    margin-bottom: 10px; /* Space between list items */
}

.highlight-list li::before {
    content: "✔️"; /* Use checkmark emoji */
    margin-right: 10px; /* Space between the emoji and text */
    color: #007bff; /* Color for the checkmark */
}