        /* Container pentru countere */
        .counter-box {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Stilizare cerc */
        .counter-item {
            width: 130px;
            height: 130px;
            background-color: #2BC249;
            color: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            font-weight: 600;
            margin: 0 auto;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out;
        }

        /* Efect hover */
        .counter-item:hover {
            transform: scale(1.1);
        }

        /* Stilizare titlu și text */
        .counter-title {
            margin-top: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #2BC249;
        }

        .counter-text {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .counter-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .counter-box {
                grid-template-columns: 1fr;
            }
        }