body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #f2f2f2;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}



.link-teal {
	color: #00cec8;
	transition: color 0.3s ease;
	text-decoration: underline;
}

.link-teal:hover,
.link-teal:focus {
	color: #00b2ad; /* Slightly darker for hover effect */
	text-decoration: underline;
}

.main-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-family: "Pacifico", cursive, "Comic Sans MS", sans-serif;
	font-size: 2.8rem;
	text-align: center;
	margin-top: 32px;
	margin-bottom: 24px;
	color: lightgrey;
	letter-spacing: 2px;
}

.main-title-btn {
	margin-top: 20px;
	display: flex;
	align-items: baseline;
}

/* Container and Flex Layout */
.landing-container {
	display: flex;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.flex-section {
	display: flex;
	flex-direction: row;
	max-width: 1200px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.image-container,
.card {
	width: 50%;
	min-width: 0; /* Prevent overflow */
	flex: 0 0 50%;
	box-sizing: border-box;
}

/* Image Section */
.image-container {
	flex: 1 1 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.image-container img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
	border-radius: 16px; /* Rounded corners */
}

/* Card Section */
.card {
	flex: 1 1 50%;
	padding: 20px;
	box-sizing: border-box;
}

/* Text Styles */
.intro-text {
	font-family: "Helvetica Neue", sans-serif;
	letter-spacing: 2px;
	font-size: 1.2rem;
}

.headline {
	font-family: "Lexend Exa", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.4;
	margin-bottom: 15px;
}

.highlight {
	background-color: #f0f8ff;
	color: #00cec8;
	padding: 4px 6px;
	border-radius: 4px;
	display: inline-block;
}

.highlight-orange {
	color: white;
	background-color: #c11c84;
	border-radius: 4px;
	padding: 4px 6px;
	font-weight: bold;
}

.step-image {
	width: 320px;
	height: auto;
	object-fit: contain;
	border-radius: 12px; /* Rounded corners */
	box-shadow: 0 2px 8px rgba(0, 0, 0);
}

.subtitle {
	font-family: "Verdana", sans-serif;
	font-size: 1rem;
	color: #555;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

/* Button */
.cta-button {
	background-color: #00cec8;
	color: white;
	border: none;
	padding: 12px 20px;
	font-family: "Verdana", sans-serif;
	font-size: 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.8s ease;
	text-decoration: none; /* Remove underline for links */
	display: inline-block; /* Make anchor look like button */
	text-align: center;
	letter-spacing: 2px;
}
/*
.cta-button:hover {
	background-color: #c11c84;
	text-decoration: none; 
}
*/

/* Call to Action Group */
.cta-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.cta-note {
	font-family: "Verdana", monospace;
	font-size: 0.65rem;
	color: gray;
	margin-top: 4px;
	margin-bottom: 0;
}

.intro-highlight {
	font-weight: bold;
	color: #1171ba;
	font-size: 1.2rem;
	margin: 24px auto 0 auto;
	text-align: center;
}

/* Center Section */
.center-section {
	display: flex;
	max-width: 1160px;
	width: 100%;
	margin: 32px 0;
	line-height: 1.8;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.images-centered {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	gap: 8px;
}

.thumb-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.thumb {
	margin: 0 4px;
	vertical-align: middle;
	border-radius: 8px;
	box-shadow: 0 2px 4px #c11c84;
}

/* Info Boxes */
.info-flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
	margin: 32px 0;
	max-width: 1200px;
	width: 100%;
}

.info-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	padding: 24px;
	flex: 1 1 0;
	min-width: 220px;
	max-width: 350px;
	text-align: center;
	font-family: "Helvetica Neue", sans-serif;
}

.benefits-list {
	background-color: #00cec8;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	padding: 24px;
	flex: 1 1 0;
	min-width: 220px;
	max-width: 350px;
	text-align: center;
	font-family: "Helvetica Neue", sans-serif;
}

.benefits-list h2 {
	color: #fff;
}

.info-box h3 {
	margin-top: 0;
	color: #c11c84;
	font-family: "Lexend Exa", sans-serif;
	font-size: 1.3rem;
}

/* Add to landingPageImages/index.css */

.faq-section {
	max-width: 1160px;
	width: 100%;
	margin: 32px auto;
	background: #f2f2f2;
	border-radius: 14px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	padding: 32px 24px;
}

.faq-title {
	text-align: center;
	font-size: 2rem;
	color: #c11c84;
	margin-bottom: 24px;
	font-family: "Verdana", sans-serif;
}

.faq-list {
	width: 100%;
}

.faq-item {
	border-bottom: 1px solid lightgray;
}

.faq-question {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 18px 0;
	font-weight: bold;
	font-size: 1.1rem;
	user-select: none;
	font-family: "Verdana", sans-serif;
}

.faq-q-text {
	text-decoration: underline;
}

.faq-arrow {
	margin-right: 12px;
	font-size: 1.3rem;
	transition: transform 0.3s;
	text-decoration: none; /* Ensure arrow is not underlined */
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
	background: #f9f9f9;
	padding: 0 0;
	font-weight: normal;
	font-size: 1rem;
	color: #333;
	font-family: "Verdana", sans-serif;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	opacity: 1;
	padding: 16px 0;
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.a-no-underline {
	text-decoration: none;
	color: inherit;
}

.cta-big-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 32px 0 32px 0;
}

.cta-button.cta-button-big {
	width: 100%;
	max-width: 1200px;
	font-size: 1.6rem;
	padding: 28px 0;
	font-weight: bold;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(193, 28, 132, 0.08);
}

.footer {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	background-color: transparent !important;
	margin-top: 16px;
	margin-bottom: 64px;
}

.links {
	text-decoration: underline;
	color: #555;
	padding: 8px 16px;
	font-family: "Verdana", sans-serif;
	font-size: 1rem;
	transition: background-color 0.8s ease;
	background-color: transparent !important;
}

.links:hover {
	background-color: white !important	;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-section {
		padding: 16px 8px;
	}

	.flex-section {
		flex-direction: column;
	}

	.image-container,
	.card {
		flex: 1 1 100%;
		width: 100% !important; /* Add this */
		flex-basis: 100% !important; /* Add this */
		min-width: 0;
	}

	.main-title {
		display: none;
	}

	.headline {
		font-size: 1.5rem;
	}

	.center-section {
		display: none;
	}
}

svg.whiteboard2 {
	display: block;
	margin-left: 10px;
	overflow: visible !important;
	margin-top: 10px !important;
}

.container2 {
	background: white;
	overflow: visible;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	text-align: center;
	height: 80%;
	min-height: 200px;
	max-height: 400px;
	border-radius: 1em;
	border: #00cec8;
	border-style: solid;
	border-width: medium;
	width: 100%;
	padding: 30px;
}
