private InterpretationSection BuildMakingChangesSection()
        {
            var section = new InterpretationSectionBuilder()
                          .SetTitle("Making Changes")
                          .AddParagraph("Making changes for blood pressure consists primary of lifestyle and medical " +
                                        "interventions. Lifestyle interventions include improving body composition, " +
                                        "such as reducing body fat percentage to an ideal level, increasing cardiovascular " +
                                        "training, and making dietary changes. A common diet prescribed for hypertension " +
                                        "is the DASH diet. When lifestyle is not enough, we include blood pressure " +
                                        "medications. We understand that people often wish to avoid medications");

            if (_stage == BloodPressureStage.Low)
            {
                return(section.AddParagraph("Your blood pressure is low. This case is less simple to generalize. " +
                                            "As such, it's importnat to discuss the details of this in the context of " +
                                            "your overall state of health with your clinician.").Build());
            }

            if (_stage == BloodPressureStage.Elevated)
            {
                return(section.AddParagraph(
                           "Your blood pressure is elevated to a range that is most often addressable " +
                           "via lifestyle change. Some combination of bodyfat reduction, exercise, and " +
                           "dietary changes such as those described in the DASH diet, will likely " +
                           "remedy this.").Build());
            }
            if (_stage == BloodPressureStage.Stage1Hypertension)
            {
                return(section.AddParagraph(
                           "Your blood pressure is elevated to a range that is sometimes addressable " +
                           "by lifestyle change, but often requires medication. It's reasonable to " +
                           "have a discussion with your clinician on whether or not lifestyle change " +
                           "is a good option for your before adding medication, or if both are " +
                           "necessary at this point.").Build());
            }
            if (_stage == BloodPressureStage.Stage2Hypertension)
            {
                return(section.AddParagraph(
                           "Your blood pressure is elevated to a range that requires medical management. " +
                           "It is still possible to reduce the blood pressure via lifestyle to a degree that the " +
                           "medication can be stopped. However, while this is a possibility, the " +
                           "current levels are such that they should be addressed. ").Build());
            }
            if (_stage == BloodPressureStage.HypertensiveUrgency)
            {
                return(section.AddParagraph("Your blood pressure is elevated to such a degree that action is urgent. " +
                                            "Medications are required, and it often takes as many as three medications " +
                                            "to reduce blood pressure that is this elevated to an acceptable level. " +
                                            "Improving blood pressure via medical management should be very high priority " +
                                            "and working closely with your clinician to accomplish this in a relatively " +
                                            "short period of time is strongly encouraged.").Build());
            }
            if (_stage == BloodPressureStage.HypertensiveEmergency)
            {
                return(section.AddParagraph(
                           "Your blood pressure needs to be addressed emergently. There is evidence to " +
                           "suggest that the blood pressure elevation is causing acute, dangerous " +
                           "damage to organs of your body. This cannot be delayed. ").Build());
            }


            return(section.Build());
        }