		/* Content w/ Lifestyles customizable root variables */
		:root {
			/* cwl = Content w/ Lifestyles */
			/* Accent Class */
			--hsd-mod-cwl-75-25-accent-background-color: #000;
			--hsd-mod-cwl-75-25-accent-text-color: #fff;
			--hsd-mod-cwl-75-25-accent-link-color: #fff;
		}

		/* Module Parent */
		.hsd-mod-content-w-lifestyle-75-25 {
			display: grid;
			grid-template-columns: 75% 25%;
			align-items: center;
			justify-items: center;
			max-width: 1440px;
			width: 100%;
			margin: 1rem auto;
		}

		/* Reverse Class */
		/* (swaps image and content position when added) */
		.hsd-mod-cwl-75-25-reverse {
			grid-template-columns: 25% 75%;
		}

		.hsd-mod-cwl-75-25-reverse .hsd-mod-cwl-75-25-content {
			order: 1;
		}

		/* Image Cont */
		.hsd-mod-cwl-75-25-img {
			width: 100%;
			height: 100%;
		}

		.hsd-mod-cwl-75-25-img img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

		/* Content Cont */
		.hsd-mod-cwl-75-25-content {
			margin: 1rem;
			padding: 4rem;
			box-sizing: border-box;
		}

		/* Accent styling */
		.hsd-mod-cwl-75-25-accent {
			color: var(--hsd-mod-cwl-75-25-accent-text-color);
			background-color: var(--hsd-mod-cwl-75-25-accent-background-color);
		}

		.hsd-mod-cwl-75-25-accent a {
			color: var(--hsd-mod-cwl-75-25-accent-link-color);
		}

		/* Media Query for mobile */
		@media screen and (max-width: 767px) {

			/* Module Parent */
			.hsd-mod-content-w-lifestyle-75-25 {
				grid-template-columns: 1fr;
			}

			/* Content Cont */
			.hsd-mod-cwl-75-25-content {
				margin: 1rem;
				padding: 1rem;
			}

			/* Have the content above the image */
			.hsd-mod-content-w-lifestyle-75-25 .hsd-mod-cwl-75-25-content {
				order: 2;
			}
		}

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

		.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 */
			}
		}

		/* Content w/ Images customizable root variables */
		:root {
			--hsd-accent-background-color: #000;
			--hsd-accent-text-color: #FFF;
			--hsd-section-margin: 1rem 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;
			}
		}

		/* overview section */
		.hsd-overview {
			background: #F6F6F6;
			max-width: 1050px;
			width: 100%;
			margin: 1rem auto;
			padding: 2em 2em 4rem;
			text-align: center;
		}

		.hsd-overview ul {
			text-align: left;
			max-width: 850px;
			margin: 0 auto;
		}