<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container10 {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 900px;
width: 100%;
padding: 40px;
animation: fadeIn 0.6s ease-in;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
h1 {
text-align: center;
color: #333;
font-size: 2.5em;
margin-bottom: 30px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.content {
display: flex;
gap: 30px;
margin-bottom: 30px;
align-items: center;
}
.text-section {
flex: 1;
color: #555;
line-height: 1.8;
font-size: 1.05em;
}
.text-section p {
margin-bottom: 15px;
}
.image-section {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.image-section img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-section img:hover {
transform: scale(1.05);
}
.button-container {
text-align: center;
margin-top: 30px;
}
.cta-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 15px 40px;
font-size: 1.1em;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
transition: all 0.3s ease;
font-weight: 600;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}
.cta-button:active {
transform: translateY(0);
}
@media (max-width: 768px) {
.content {
flex-direction: column;
}
h1 {
font-size: 2em;
}
.container {
padding: 30px 20px;
}
}
</style>
<div class=”container10″>
<h1>appraisal@work</h1>
<div class=”content”>
<div class=”text-section”>
<p><b>Purpose:</b> The appraisal@work Diagnostic provides a robust framework for assessing individual
and team performance in a fair, transparent, and constructive manner.</p>
<h3>Benefits of Use:</h3>
<p><b>For Teams:</b> Clear expectations and better self-awareness; targeted coaching and developmental
discussions.</p>
<p><b>For Leaders:</b> Data-led insights to support objective reviews; early identification of rising talent;
aids in succession planning.</p>
<p><b>For Organizations:</b> Alignment between performance management and strategy; stronger,
future-proof workforce; reduces bias.</p>
</div>
<div class=”image-section”>
<img src=”https://performanceinspired.com/wp-content/uploads/2025/10/radar-chart.jpg?w=500&h=400&fit=crop”
alt=”Modern workspace with technology”>
</div>
</div>
</div>