
    .pro-about-centered {
        max-width: 900px;
        margin: 40px auto; 
        font-family: inherit;
        color: #444;
        line-height: 1.6;
        text-align: center;
    }
    .pro-about-centered h3 {
        color: #333;
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 35px;
        font-weight: 600;
        position: relative;
        padding-bottom: 12px;
    }
    .pro-about-centered h3::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: #f57c00; 
    }
    .pro-about-centered p {
        margin: 0 auto 16px auto;
        font-size: 15px;
        max-width: 95%;
    }
    .pro-about-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin: 35px auto;
        background: #fafafa;
        padding: 30px 20px;
        border-radius: 6px;
        border-top: 4px solid #f57c00;
    }
    .pro-about-stat-item {
        flex: 1 1 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        color: #333;
    }
    .pro-about-stat-icon {
        color: #f57c00;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 18px;
    }
    .pro-highlight {
        color: #f57c00;
        font-weight: 600;
    }
    
    @media (max-width: 600px) {
        .pro-about-stat-item {
            flex: 1 1 100%;
        }
    }
