/* Section Container Styling */
.lu-achievements-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.lu-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Titles and Typography Hierarchy */
.lu-section-title {
    color: #e62222; /* Laikipia signature red */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lu-section-desc {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 850px; /* Limits paragraph width to prevent eye strain */
    margin: 0 auto 50px auto;
}

/* Flexbox Stats Grid Layout */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Modern Card Layout replacing old vertical dividers */
.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 25px 15px;
    background: #eee;
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

/* The Animated Numbers wrapper */
.stat-number-wrapper {
    font-size: 2.6rem;
    font-weight: 800;
    color: #e62222;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number-wrapper .plus {
    font-size: 2rem;
    vertical-align: super;
    margin-left: 2px;
}

/* The Label Links */
.stat-type a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d5c3a; /* Deep green university tint */
    text-decoration: none;
    transition: color 0.2s ease;
}

.stat-type a:hover {
    color: #e62222;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }
    .stat-card {
        width: 100%;
    }
}
