	.accordion-container {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	#accordion {
		width: 35%;
	}

	.accordion-section {
		background-color: #fff;
		border-bottom: 1px solid #ddd;
		margin-bottom: 4px;
		padding: 12px 12px;
	}

	.accordion-toggle {
		background-color: #00aeef;
		color: white;
		padding: 10px;
		width: 100%;
		border: none;
		text-align: left;
		outline: none;
		font-size: 16px;
		cursor: pointer;
		position: relative;
	}

	.accordion-toggle .icon {
		display: inline-block;
		margin-right: 10px;
		font-size: 1.5em;
		color: #00aeef;
	}

	.accordion-toggle .arrow {
		position: absolute;
		right: 10px;
		color: #00aeef;
	}

	.accordion-content {
		background-color: white;
		padding: 8px 16px 12px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
		/* Add opacity transition */
		border-top: none;
		visibility: hidden;
		/* Ensure content is not visible when closed */
		opacity: 0;
		/* Ensure content is fully hidden */
	}

	.accordion-section .accordion-toggle.active+.accordion-content {
		visibility: visible;
		/* Make content visible when active */
		opacity: 1;
		/* Make content fully visible when active */
	}

	.accordion-content p {
		margin-bottom: 0.7rem;
		word-break: break-word;
	}

	.learn-more-btn {
		background-color: transparent;
		border: 1px solid #005bea;
		border-radius: 4px;
		color: #000;
		padding: 6px 22px;
		text-decoration: none;
		font-size: 87%;
		cursor: pointer;
		margin-top: 12px;
		margin-bottom: 12px;
		line-height: 1.4;
		outline: 0;
		width: fit-content;
	}

	#image-panel {
		width: 60%;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		text-align: center;
	}

	#image-panel img {
		max-width: 72%;
		max-height: 72%;
	}