.trust-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	max-width: 400px;
}

.trust-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	font-size: 0.95rem;
	color: #444;
	line-height: 1.4;
}

/* The custom checkmark icon */
.trust-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-right: 12px;
	color: #2ecc71;
}

.trust-text strong {
	display: block;
	color: #2c3e50;
	margin-bottom: 2px;
}
body { 
	font-family: sans-serif; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	height: 100vh; 
	margin: 0; 
	background-color: #f4f7f6; 
}
.success-card { 
	background: white; 
	padding: 3rem; 
	border-radius: 8px; 
	box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
	text-align: center; 
	max-width: 400px; 
	width: 90%; 
}

/* Success Icon Styling */
.checkmark-container {
	width: 80px;
	height: 80px;
	background-color: #eafaf1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}
.checkmark {
	color: #2ecc71;
	font-size: 3rem;
}

h1 { color: #2c3e50; margin-bottom: 0.5rem; }
p { color: #7f8c8d; line-height: 1.6; margin-bottom: 2rem; }

.transaction-details {
	background: #f9f9f9;
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	text-align: left;
}
.detail-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}
.label { color: #95a5a6; }
.value { font-weight: bold; color: #2c3e50; }

.btn-return {
	display: inline-block;
	padding: 12px 24px;
	background-color: #2ecc71;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background 0.2s;
}
.btn-return:hover {
	background-color: #27ae60;
}
