.trail-stats {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.trail-stats h3,
.trail-stats h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.4em;
    padding-bottom: 12px;
    border-bottom: 3px solid #27ae60;
}

/* Slightly smaller font for h4 */
.trail-stats h4 {
    font-size: 1.2em;
}

.trail-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trail-stats li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.05em;
    line-height: 1.6;
}

.trail-stats li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trail-stats li strong {
    color: #495057;
    font-weight: 600;
}

.trail-stats a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.trail-stats a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .trail-stats {
        padding: 20px;
        margin: 20px 0;
    }
    
    .trail-stats h3 {
        font-size: 1.2em;
    }
    
    .trail-stats li {
        font-size: 1em;
    }
}