.stat-container {
    font-family: Arial, sans-serif;
    width: 100%;
    /* Modificat pentru a ocupa toată pagina */
    margin: 3rem 0;
    /* Margini sus/jos de 3rem, stânga/dreapta 0 */
    color: #333;
    padding: 0 15px;
    box-sizing: border-box;
    /* Asigură că padding-ul nu depășește 100% */
}

.intro-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.intro-item img {
    width: 250px;
    border: 1px solid #ccc;
    margin-right: 20px;
    border-radius: 4px;
}

.intro-item h3 {
    margin: 0 0 10px 0;
    color: #0056b3;
    font-size: 1.2rem;
}

.stat-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.stat-section h2 {
    font-size: 1.4rem;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.stat-section h3 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.stat-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

table.stat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

table.stat-table th,
table.stat-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table.stat-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
}

table.stat-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table.stat-table td.number {
    text-align: right;
    font-weight: bold;
}

@media (max-width: 768px) {
    .intro-item {
        flex-direction: column;
    }

    .intro-item img {
        margin-bottom: 15px;
        width: 100%;
    }
}