* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements {
    background: white;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.text-block {
    max-width: 400px;
}

.badge {
    display: inline-block;
    background: #4169E1;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card.active {
    background: #4169E1;
    color: white;
    border: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card.active .stat-number {
    color: white;
}

.stat-card .stat-number {
    color: #1a1a1a;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.stat-card.active .stat-label {
    color: white;
}

.stat-card .stat-label {
    color: #666;
}