.stats-overview {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 4rem 0 2rem 0;
}

.stats-extended-overview h2, .stats-overview h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-left: 4px solid #005bbb;
    padding-left: 10px;
}

.stats-extended-overview-items, .stats-overview-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.stats-extended-overview-item, .stats-overview-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e3e6ea;
}

.stats-extended-overview-item:hover, .stats-overview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.stats-extended-overview-item h3, .stats-overview-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: #005bbb;
    margin: 0.5rem 0;
}

.stat-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.3rem;
    line-height: 1.4;
}

/* stats-extended-overview */
.stats-extended-overview {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 4rem 2.5rem 2rem 0;
}

/* stats category overview */
.stats-category-overview {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 4rem 0 2rem 2rem;
}

.stats-category-overview-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-category-overview h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-left: 4px solid #005bbb;
    padding-left: 10px;
}

.stats-category-overview-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e3e6ea;
}

.stats-category-overview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.stats-category-overview-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: #005bbb;
    margin: 0.5rem 0;
}

/* Stats Percentage Section */
.stats-percentage-section {
    text-align: center;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 20px 0px 50px 0px;
}

.stats-percentage-section h2 {
    font-weight: 550;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #153C54;
}

.stats-percentage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stats-percentage-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stats-percentage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.stats-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.stats-circle svg {
    transform: rotate(-90deg);
    width: 100px;
    height: 100px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: #153C54;
    stroke-width: 3.8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 18px;
    color: #153C54;
}

.stats-percentage-card h3 {
    margin-top: 10px;
    font-weight: 600;
    color: #153C54;
}

.stats-percentage-card .description {
    color: #555;
    font-size: 14px;
    margin-top: 8px;
}

/* mobile */
@media (max-width: 600px) {
    .stats-overview {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stats-overview h2 {
        font-size: 1.5rem;
    }
    
    .stats-percentage-section {
        padding: 15px;
        margin: 0px;
    }

    .stats-percentage-section h2 {
        font-size: 2rem;
    }

    .stats-percentage-card h3 {
        font-size: 1.3rem;
    }

    .stats-extended-overview {
        margin: 4rem 0 2rem 0;
    }
}
