.af-d41ff0dd-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
}

.af-d41ff0dd-wave-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	/* height is set via elementor controls */
	line-height: 0;
	background: transparent;
	margin-bottom: -1px; /* Prevents 1px white line on some zoom levels */
}

.af-d41ff0dd-wave {
	width: 200%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.af-d41ff0dd-wave-1 {
	animation: af-d41ff0dd-wave-anim 12s linear infinite;
	z-index: 1;
}

.af-d41ff0dd-wave-2 {
	animation: af-d41ff0dd-wave-anim-reverse 8s linear infinite;
	z-index: 2;
}

.af-d41ff0dd-wave-3 {
	animation: af-d41ff0dd-wave-anim 5s linear infinite;
	z-index: 3;
}

@keyframes af-d41ff0dd-wave-anim {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes af-d41ff0dd-wave-anim-reverse {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.af-d41ff0dd-content {
	width: 100%;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-top: 0;
}

.af-d41ff0dd-payments {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px; /* Increased gap to match screenshot */
	max-width: 600px;
}

.af-d41ff0dd-payments-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px; /* Increased gap to match screenshot */
}

.af-d41ff0dd-payment-icon,
.af-d41ff0dd-payment-svg svg {
	height: 35px; /* Updated to match new aspect ratio */
	width: 55px; /* Updated to match new aspect ratio */
	object-fit: contain;
	display: block;
}

.af-d41ff0dd-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	max-width: 800px;
	text-align: center;
	line-height: 1.8;
}

.af-d41ff0dd-text, .af-d41ff0dd-link, .af-d41ff0dd-dot {
	font-size: 14px;
	opacity: 0.9;
}

.af-d41ff0dd-link {
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.af-d41ff0dd-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.af-d41ff0dd-dot {
	margin: 0 4px;
}

.af-d41ff0dd-links-wrapper {
	display: inline;
}