<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* Card Container */
.achievements-card {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 24px 30px;
max-width: 500px;
margin: 20px auto;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
/* List Container */
.achievements-list {
list-style: none;
padding: 0;
margin: 0;
}
/* List Items with Cyan Text and SVG Checkmark */
.achievements-list li {
position: relative;
padding-left: 32px;
margin-bottom: 16px;
color: #00c7d4; /* Cyan text color matching your design */
font-size: 16px;
font-weight: 600;
line-height: 1.5;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c7d4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-size: 18px;
background-position: left top 3px;
}
.achievements-list li:last-child {
margin-bottom: 0;
}
</style>
</head>
<body>
<!-- Copy from here to paste into your website body -->
<div class="achievements-card">
<ul class="achievements-list">
<li>More than 5 National and International Publications</li>
</ul>
</div>
<!-- End of copy block -->
</body>
</html>