body, html {
	height: 100%;
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.navbar {
	padding: .5rem 1rem;
	border: 1px solid #94a3b82f;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, .8);
	-webkit-backdrop-filter: blur(6.5px) brightness(.95);
	backdrop-filter: blur(6.5px) brightness(.95);
	
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	
	margin-left: 200px;
	margin-right: 200px;
}

.play {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
	text-decoration: underline;
}

.highlight-word-gradient {
	background: linear-gradient(0deg, #396FDC, #57B2E7);
	color: white;
	padding-bottom: 4px;
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 4px;
	font-style: italic;
}

.highlight-word {
	background-color: #FDF7CB;
	padding-bottom: 4px;
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 4px;
	font-style: italic;
}

.highlight-word-gold {
	background-color: gold;
	padding-bottom: 4px;
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 4px;
	font-style: italic;
}

h1 {
	font-size: 40pt;
	font-weight: 700;
	line-height: 68px;
	padding-bottom: 10px;
}

h2 {
	font-size: 30pt;
	font-weight: 700;
	padding-bottom: 80px;
}

.hero-leading {
	font-size: 18pt;
	font-weight: 300;
	padding-bottom: 10px;
}

.hero-text-leading {
	text-align: leading;
	padding-top: 40px;
	height: 350px;
}

.hero-text-trailing {
	text-align: leading;
	padding-left: 30px;
	padding-top: 40px;
}

.button-container {
	display: flex;
	gap: 16px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.primary-button {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	font-size: 16pt;
	font-weight: 500;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 50px;
	background: linear-gradient(0deg, #396FDC, #57B2E7) border-box;
}

.secondary-button {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	font-size: 16pt;
	font-weight: 500;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 50px;
	background-clip: padding-box;
	background-origin: border-box;
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(0deg, #396FDC, #57B2E7) border-box;
}

.secondary-button::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, #396FDC, #57B2E7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-align: center;
	line-height: 50px; /* Adjust this line-height to match your button height */
	border-radius: 50px;
}

.secondary-button-dark {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	font-size: 16pt;
	font-weight: 500;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 50px;
	background-clip: padding-box;
	background-origin: border-box;
	background: linear-gradient(#000, #000) padding-box, linear-gradient(0deg, #396FDC, #57B2E7) border-box;
}

.secondary-button-dark::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, #396FDC, #57B2E7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-align: center;
	line-height: 50px; /* Adjust this line-height to match your button height */
	border-radius: 50px;
}

.primary-button:link {
	color: white;
}

.primary-button:hover {
	color: white;
	text-decoration: none;
}

.secondary-button:link {
	color: transparent;
}

.secondary-button:hover {
	text-decoration: none;
}

img.img-fluid {
	max-width: 100%;
	height: auto;
}

a:link {
	color: black; 
}

a:hover {
	color: black; 
}

a:active {
	color: black; 
}

a:visited {
	color: black; 
}

.review-section {
	position: relative;
	padding: 80px 0;
}

.review-bg {
	background-color: #FDF7CB;
}

.review-stars, .review-stars-top {
	color: gold;
	font-size: 20px;
}

.social {
	margin-top: 16px;
}

.review-img {
	width: 44px;
	height: 44px;
	border-radius: 50%; /* Circular images */
	object-fit: cover; /* Maintain image proportions */
	border: 3px solid #fff; /* White border */
}

.review-img-link {
	margin-left: -8px; /* Overlap the images */
}

.review-img-link:first-child {
	margin-left: 0; /* No negative margin for the first image */
}

.card {
	border: none;		
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.card-body {
	position: relative;
	padding: 2rem;
}

.card-body::before {
	left: -60px;
}

.card-body::after {
	right: -60px;
}

.feature-section {
	position: relative;
	padding: 80px 0;
}

.faq-bg {
	background-color: #F8FAFC;
}

.faq-section {
	position: relative;
	padding: 80px 0;
}

.cta-bg {
	background-color: black;
}

.cta-section {
	position: relative;
	padding: 80px 0;
}

.accordion-header {
	padding: 0px;
}

.accordion-item {
	background-color: #F8FAFC;
}

.accordion-button {
	background-color: #F8FAFC;
}

/* Change the active (expanded) accordion button color */
.accordion-button:not(.collapsed) {
	background-color: #F8FAFC;
	color: #396FDC;
	box-shadow: none;
}

.accordion-button, .accordion-body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-size: 16px; /* Example font size */
}

.accordion-button:not(.collapsed)::after {
	--bs-accordion-btn-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%396FDC00'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%396FDC00'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
	--bs-accordion-btn-icon-width: 3rem;
	background-image: var(--bs-accordion-btn-icon);
	background-color: var(--bs-tertiary-bg);
	border-radius: 0.8em;
	box-shadow: var(--bs-box-shadow);
}

.app-icon {
	width: 100%; /* Scales image to the container width */
	max-width: 200px; /* Ensures it doesn't exceed its intended size */
	height: auto; /* Maintains aspect ratio */
}

.footer {
	width: 100%;
	color: black;
	font-size: 15px;
	font-weight: 300;
	text-align: leading;
	margin-top: 30px;
	padding: 10px 0;
}

.video-container {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

video {
	margin: 0;
	padding: 0;
	border: none;
	display: block; /* Ensures no extra inline spacing */
}

@media (max-width: 991px) {
	h1 {
		font-size: 24pt;
		line-height: 44px;
	}
	
	.hero-text-leading {
		text-align: center;
		padding-top: 12px;
		height: auto;
	}
	
	.hero-text-trailing {
		text-align: center;
		align-content: center;
		padding-left: 12px;
		padding-right: 12px;
		padding-top: 12px;
	}
	
	.hero-leading {
		font-size: 15pt;
	}
	
	.primary-button {
		font-size: 12pt;
	}
	
	.secondary-button {
		font-size: 12pt;
	}
	
	.secondary-button::before {
		line-height: 44px;
	}
	
	.secondary-button-dark {
		font-size: 12pt;
	}
	
	.secondary-button-dark::before {
		line-height: 44px;
	}
	
	.img-fluid {
		margin-top: 16px;
	}
	
	.review-section {
		padding: 40px 0;
	}
	
	.feature-section {
		padding: 40px 0;
	}
	
	.faq-section {
		padding: 40px 0;
	}
	
	h2 {
		font-size: 18pt;
		padding-bottom: 40px;
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.navbar {
		margin-right: 20px;
		margin-left: 20px;
	}
	
	.desktop-break { 
		display: none; 
	}
	
	.footer {
		text-align: center;
		margin-top: 30px;
	}
	
	.app-icon {
		max-width: 120px;
	}
}

@media (max-width: 1200px) {
	h3 {
		font-size: 16pt;
	}
	
	.hero-text-trailing {
		text-align: center;
	}
	
	.button-container {
		flex-direction: column;
	}
	
	.review-stars-top {
		display: flex;
	}
	
	.review-stars-top span {
		text-align: center; /* Ensure the stars themselves are centered */
	}
}

@media (min-width: 1700px) {
	.review-section::before {
		content: '';
		position: absolute;
		width: 80px;
		height: 80px;
		background: url('/assets/images/laurel_leading.png') no-repeat center center;
		background-size: contain;
		top: 20%;
		transform: translateY(-50%);
	}
	
	.review-section::after {
		content: '';
		position: absolute;
		width: 80px;
		height: 80px;
		background: url('/assets/images/laurel_trailing.png') no-repeat center center;
		background-size: contain;
		top: 20%;
		transform: translateY(-50%);
	}
	
	.review-section::before {
		top: 280px;
		left: -140px;
	}
	
	.review-section::after {
		top: 280px;
		right: -140px;
	}
}