.highlight-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.3;
    border-radius: 4px;
}

/* Stat Cards */
.stat-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    min-height: 250px;
    height: 100%;
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
    .stat-card {
        padding: 1rem;
        min-height: 200px;
        gap: 12px;
    }

    .stat-card-image img {
        width: 90px;
        height: 90px;
    }
}