body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
    background-color: #f4f4f4;
}

.section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.list-item {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.list-item::before {
    content: "•";
    position: absolute;
    right: 0;
    top: 0;
    color: #555;
}

.sub-list {
    padding-right: 20px;