.subscribe-content h1,
.subscribe-content h2,
.subscribe-content h3,
.subscribe-content p {
  margin-bottom: 8pt;
}
.subscribe-content li { margin-bottom:8pt }
.subscribe-content h1 { margin-top:12pt; margin-bottom:0pt; text-indent:0pt; text-align:center; page-break-inside:avoid; page-break-after:avoid; line-height:200%; font-family:'Times New Roman'; font-size:12pt; font-weight:bold }
.subscribe-content h2 { margin-top:2pt; margin-bottom:0pt; text-indent:36pt; page-break-inside:avoid; page-break-after:avoid; line-height:200%; font-family:'Times New Roman'; font-size:12pt; font-weight:bold }
.subscribe-content h3 { margin-top:2pt; margin-bottom:0pt; text-indent:36pt; page-break-inside:avoid; page-break-after:avoid; line-height:200%; font-family:'Times New Roman'; font-size:12pt; font-weight:bold }
.ListParagraph { margin-left:36pt; margin-bottom:8pt; text-indent:36pt; line-height:200%; font-family:'Times New Roman'; font-size:12pt }
.Header { margin-bottom:0pt; text-indent:36pt; line-height:normal; font-family:'Times New Roman'; font-size:12pt }
.Footer { margin-bottom:0pt; text-indent:36pt; line-height:normal; font-family:'Times New Roman'; font-size:12pt }
span.Heading1Char { font-family:'Times New Roman'; font-size:12pt; font-weight:bold }
span.Hyperlink { text-decoration:underline; color:#0000ff }
span.HeaderChar { font-family:'Times New Roman'; font-size:12pt }
span.FooterChar { font-family:'Times New Roman'; font-size:12pt }
span.Heading2Char { font-family:'Times New Roman'; font-size:12pt; font-weight:bold }
span.Heading3Char { font-family:'Times New Roman'; font-size:12pt; font-weight:bold }

.subscribe-banner {
	background-color: #0000ff; /* Similar greenish background */
	display: flex;
	justify-content: space-between; /* Space between content and button */
	align-items: center; /* Align items vertically in the center */
	padding: 10px 20px;
	border-radius: 10px;
	max-width: 80%;
	margin: 20px auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}

.subscribe-banner:hover {
	transform: scale(1.02);
}

.subscribe-content {
	flex: 1; /* Allow content to take available space */
	margin-right: 20px; /* Space between content and button */
}

.subscribe-content h3 {
	margin: 0;
	font-size: 24px;
	color: #fff;
}

.subscribe-content p {
	margin: 5px 0 0;
	font-size: 16px;
	color: #fff;
}

.subscribe-button {
	text-decoration: none;
	background-color: #ffffff;
	color: #0000ff;
	padding: 12px 24px;
	border: 2px solid #0000ff;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.subscribe-button:hover {
	background-color: #0000ff;
	color: #ffffff;
	cursor: pointer;
}

.triangle {
	display: inline-block;
	margin-left: 10px;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #a653cc; /* Purple color */
}

.banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.banner-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: #fff;
}

.banner-content p {
	font-size: 16px;
	color: #fff;
}

.view-button {
	text-decoration: none;
	background-color: #fff;
	color: #0070f3;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease;
}

.view-button:hover {
	background-color: #f0f0f0;
}

/* Responsive styles for mobile screens */
@media (max-width: 768px) {
	.subscribe-banner {
		flex-direction: column; /* Stack content vertically */
		padding: 15px;
	}

	.subscribe-content {
		margin-right: 0; /* Remove margin on smaller screens */
		text-align: center;
	}

	.subscribe-content h3 {
		font-size: 20px; /* Adjust font size for smaller screens */
	}

	.subscribe-content p {
		font-size: 14px; /* Adjust font size for smaller screens */
	}

	.subscribe-button {
		width: 100%; /* Make button full width */
		margin-top: 10px; /* Add spacing between content and button */
		padding: 10px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.subscribe-content h3 {
		font-size: 18px; /* Further adjust font size for very small screens */
	}

	.subscribe-content p {
		font-size: 12px; /* Further adjust font size for very small screens */
	}

	.subscribe-button {
		font-size: 12px; /* Adjust button font size for small screens */
		padding: 8px;
	}
}
