	/* Content w/ Images customizable root variables */
		:root {
			--hsd-accent-background-color: #000;
			--hsd-accent-text-color: #fff;
			--hsd-section-margin: 0;
			--hsd-content-padding: 4rem;
			--hsd-content-margin: 1rem;
		}

		/* Content w/ Images styles */
		.hsd-section {
			display: grid;
			grid-template-columns: 50% 50%;
			align-items: center;
			justify-items: center;
			margin: var(--hsd-section-margin);
		}

		.hsd-section-image {
			width: 100%;
			height: 100%;
			grid-row-start: 2;
		}

		.hsd-section-image img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

		.hsd-section-paragraph {
			margin: var(--hsd-content-margin);
			padding: var(--hsd-content-padding);
			grid-row-start: 2;
		}

		.hsd-left {
			grid-column-start: 1;
		}

		.hsd-right {
			grid-column-start: 2;
		}

		.hsd-accent {
			color: var(--hsd-accent-text-color);
			background-color: var(--hsd-accent-background-color);
		}

		/* Content w/ Images Styles mobile-view adjustments */
		@media screen and (max-width: 720px) {
			.hsd-section {
				display: block;
				z-index: 9999;
				height: auto;
			}

			.hsd-section-paragraph {
				margin: 1rem;
				padding: 1rem;
			}
		}

		/* comparison chart styles */
		.hsd-table {
			width: 100%;
			border-collapse: collapse;
		}

		.hsd-table th,
		.hsd-table td {
			border: 1px solid #ddd;
			padding: 8px;
			text-align: center;
		}

		.hsd-table thead th {
			background-color: #f2f2f2;
			color: #333;
		}

		.hsd-table tr:nth-child(even) {
			background-color: #f9f9f9;
		}

		.hsd-table tr:hover {
			background-color: #f1f1f1;
		}

		.hsd-table td {
			color: #555;
		}

		.hsd-table td ul {
			text-align: left;
		}

		.hsd-showMobile {
			text-align: center;
			display: none;
		}

		table.hsd-table {
			max-width: 100% !important;
			width: 100% !important;
		}

		@media screen and (max-width: 740px) {
			.hsd-showMobile {
				text-align: center;
				display: block;
			}

			table.hsd-table {
				max-width: 740px !important;
				width: 740px !important;
			}
		}

		@media screen and (min-width: 740px) {

			/* hide scrollbar but allow scrolling */
			.hsd-tableScrollWrapper {
				-ms-overflow-style: none;
				/* for Internet Explorer, Edge */
				scrollbar-width: none;
				/* for Firefox */
				overflow-y: scroll;
			}

			.hsd-tableScrollWrapper::-webkit-scrollbar {
				display: none;
				/* for Chrome, Safari, and Opera */
			}
		}

