Ats optimized bilingual resume template
<style>
.success-container {
max-width: 500px;
margin: 0 auto;
background: white;
border-radius: 8px;
padding: 40px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.success-icon {
width: 60px;
height: 60px;
background: #523be4;
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
color: white;
}
.success-container h1 {
font-size: 28px;
color: #1a1a1a;
margin-bottom: 10px;
}
.success-subtitle {
font-size: 14px;
color: #666;
line-height: 1.6;
margin-bottom: 30px;
}
.file-info {
background: #f8f9fa;
border-radius: 6px;
padding: 16px;
margin-bottom: 20px;
border-left: 4px solid #523be4;
text-align: left;
}
.file-info h3 {
font-size: 13px;
color: #1a1a1a;
margin-bottom: 4px;
font-weight: 600;
}
.file-info p {
font-size: 12px;
color: #999;
margin: 0;
}
.download-btn {
display: block;
width: 100%;
background: #523be4;
color: white;
padding: 12px 32px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
margin-bottom: 12px;
transition: background 0.3s;
box-sizing: border-box;
}
.download-btn:hover {
background: #402fd4;
}
.tips {
background: #fffbf0;
border-radius: 6px;
padding: 16px;
margin-top: 20px;
text-align: left;
border-left: 4px solid #ffa500;
}
.tips h4 {
font-size: 13px;
color: #ff8c00;
margin-bottom: 10px;
font-weight: 600;
}
.tips ul {
list-style: none;
font-size: 12px;
color: #666;
padding: 0;
}
.tips li {
padding-left: 16px;
margin-bottom: 6px;
position: relative;
}
.tips li:before {
content: "✓";
position: absolute;
left: 0;
color: #ff8c00;
font-weight: bold;
}
.success-footer {
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
font-size: 12px;
color: #999;
}
.rating {
margin-bottom: 8px;
}
</style>
<div class="success-container">
<div class="success-icon">✓</div>
<h1>Purchase Complete!</h1>
<p class="success-subtitle">Your ATS-optimized bilingual resume template is ready to download and use immediately.</p>
<div class="file-info">
<h3>📄 ATS-Optimized-Bilingual-Resume-Template.docx</h3>
<p>Microsoft Word • Ready to edit</p>
</div>
<button class="download-btn" onclick="downloadTemplate()">⬇ Download Template</button>
<div class="tips">
<h4>Getting Started Tips</h4>
<ul>
<li>Replace sample text with your information</li>
<li>Keep formatting for ATS compatibility</li>
<li>Save as PDF before submitting</li>
<li>Use English and French sections as needed</li>
</ul>
</div>
<div class="success-footer">
<div class="rating">⭐⭐⭐⭐⭐ 392 reviews</div>
<p>Trusted by 3,450+ Canadian job seekers</p>
</div>
</div>
<script>
function downloadTemplate() {
const link = document.createElement('a');
link.href = '/path/to/ATS-Optimized-Bilingual-Resume-Template.docx';
link.download = 'ATS-Optimized-Bilingual-Resume-Template.docx';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
</script>